X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=package%2Futil-linux-ng%2FMakefile;h=0e1ac928be3727f0fd7e785d01e7a16ed948049b;hb=e98720de341c043f44af1af4790da701f0bfefd4;hp=8f4ee9b1892a138527965ffe6aa88f0576d7b5d1;hpb=148d1344ce7d2e40de0d2fa3848f2e9530015e18;p=openwrt-10.03%2F.git diff --git a/package/util-linux-ng/Makefile b/package/util-linux-ng/Makefile index 8f4ee9b18..0e1ac928b 100644 --- a/package/util-linux-ng/Makefile +++ b/package/util-linux-ng/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2007-2008 OpenWrt.org +# Copyright (C) 2007-2010 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -9,13 +9,13 @@ include $(TOPDIR)/rules.mk PKG_NAME:=util-linux-ng PKG_VERSION:=2.13.0.1 -PKG_RELEASE:=2 +PKG_RELEASE:=4 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=@KERNEL/linux/utils/$(PKG_NAME)/v2.13 PKG_MD5SUM:=c841dc8743905c8f0db20c9db5094f57 -PKG_BUILD_DEPENDS=e2fsprogs +PKG_BUILD_DEPENDS=e2fsprogs libncurses include $(INCLUDE_DIR)/package.mk @@ -46,6 +46,16 @@ define Package/cfdisk/description This package contains a utility for managing disk partition tables. endef +define Package/sfdisk +$(call Package/util-linux/Default) + TITLE:=Partition table manipulation utility (Command-line) + SUBMENU=disc +endef + +define Package/sfdisk/description + This package contains a utility for managing disk partition tables using command-line only. +endef + define Package/losetup $(call Package/util-linux/Default) TITLE:=Loopback devices setup and control utility @@ -88,11 +98,46 @@ define Package/hwclock/description This package contains a utility for managing the hardware clock. endef +define Package/flock +$(call Package/util-linux/Default) + TITLE:=Manage file locks from shell scripts +endef + +define Package/flock/description + This package contains a utility for managing file locks from shell scripts. +endef + +define Package/setterm +$(call Package/util-linux/Default) + TITLE:=Tool for setting terminal attributes + SUBMENU:=Terminal + DEPENDS:= +libncurses +endef + +define Package/setterm/description + This package contains a utility for setting terminal attributes +endef + +define Package/script +$(call Package/util-linux/Default) + TITLE:=Make typescript of terminal session + SUBMENU=Terminal +endef + +define Package/script/description + Script makes a typescript of everything printed on your terminal. + http://linux.die.net/man/1/script +endef + + define Build/Compile $(MAKE) -C $(PKG_BUILD_DIR)/disk-utils mkswap $(MAKE) -C $(PKG_BUILD_DIR)/mount swapon losetup umount mount - $(MAKE) -C $(PKG_BUILD_DIR)/fdisk fdisk cfdisk + $(MAKE) -C $(PKG_BUILD_DIR)/fdisk fdisk cfdisk sfdisk $(MAKE) -C $(PKG_BUILD_DIR)/hwclock hwclock + $(MAKE) -C $(PKG_BUILD_DIR)/sys-utils flock + $(MAKE) -C $(PKG_BUILD_DIR)/misc-utils setterm + $(MAKE) -C $(PKG_BUILD_DIR)/misc-utils script endef define Package/fdisk/install @@ -105,6 +150,11 @@ define Package/cfdisk/install $(INSTALL_BIN) $(PKG_BUILD_DIR)/fdisk/cfdisk $(1)/sbin/ endef +define Package/sfdisk/install + $(INSTALL_DIR) $(1)/usr/sbin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/fdisk/sfdisk $(1)/usr/sbin/ +endef + define Package/losetup/install $(INSTALL_DIR) $(1)/sbin $(INSTALL_BIN) $(PKG_BUILD_DIR)/mount/losetup $(1)/sbin/ @@ -126,9 +176,29 @@ define Package/hwclock/install $(INSTALL_BIN) $(PKG_BUILD_DIR)/hwclock/hwclock $(1)/sbin/ endef +define Package/flock/install + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/sys-utils/flock $(1)/usr/bin/ +endef + +define Package/setterm/install + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/misc-utils/setterm $(1)/usr/bin/ +endef + +define Package/script/install + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/misc-utils/script $(1)/usr/bin/ +endef + + $(eval $(call BuildPackage,fdisk)) $(eval $(call BuildPackage,cfdisk)) +$(eval $(call BuildPackage,sfdisk)) $(eval $(call BuildPackage,losetup)) $(eval $(call BuildPackage,mount-utils)) $(eval $(call BuildPackage,swap-utils)) $(eval $(call BuildPackage,hwclock)) +$(eval $(call BuildPackage,flock)) +$(eval $(call BuildPackage,setterm)) +$(eval $(call BuildPackage,script))