X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/be2f6582ef76308742cf886b01117bcc12eac120..002c3c665289b52eb20fd899fd3561e7f9d9e073:/package/util-linux/Makefile diff --git a/package/util-linux/Makefile b/package/util-linux/Makefile index 30a4398ae..e72342a64 100644 --- a/package/util-linux/Makefile +++ b/package/util-linux/Makefile @@ -1,48 +1,226 @@ +# +# Copyright (C) 2007-2012 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + include $(TOPDIR)/rules.mk -PKG_NAME:=fdisk -PKG_VERSION:=2.12r +PKG_NAME:=util-linux +PKG_VERSION:=2.20.1 PKG_RELEASE:=1 -PKG_MD5SUM:=c261230b27fc0fbcc287c76884caf2d3 - -PKG_SOURCE_URL:=ftp://ftp.kernel.org/pub/linux/utils/util-linux/ \ - http://ftp.kernel.org/pub/linux/utils/util-linux/ \ - ftp://ftp.de.kernel.org/pub/linux/utils/util-linux/ \ - http://ftp.de.kernel.org/pub/linux/utils/util-linux/ -PKG_SOURCE:=util-linux-$(PKG_VERSION).tar.gz -PKG_CAT:=zcat -PKG_BUILD_DIR:=$(BUILD_DIR)/util-linux-$(PKG_VERSION) -PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install - -include $(TOPDIR)/package/rules.mk - -$(eval $(call PKG_template,FDISK,fdisk,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) - -$(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared - (cd $(PKG_BUILD_DIR); \ - $(TARGET_CONFIGURE_OPTS) \ - CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \ - LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \ - ./configure \ - ); - touch $@ - -$(PKG_BUILD_DIR)/.built: - rm -rf $(PKG_INSTALL_DIR) - mkdir -p $(PKG_INSTALL_DIR) - $(MAKE) -C $(PKG_BUILD_DIR)/fdisk \ - $(TARGET_CONFIGURE_OPTS) \ - OPT="$(TARGET_CFLAGS)" \ - DESTDIR="$(PKG_INSTALL_DIR)" \ - all install - touch $@ - -$(IPKG_FDISK): - install -d -m0755 $(IDIR_FDISK)/usr/sbin - cp -fpR $(PKG_INSTALL_DIR)/sbin/fdisk $(IDIR_FDISK)/usr/sbin/ - $(RSTRIP) $(IDIR_FDISK) - $(IPKG_BUILD) $(IDIR_FDISK) $(PACKAGE_DIR) - -mostlyclean: - -$(MAKE) -C $(PKG_BUILD_DIR) clean - rm -f $(PKG_BUILD_DIR)/.built + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=@KERNEL/linux/utils/$(PKG_NAME)/v2.20 +PKG_MD5SUM:=fcd18041c5390178b1aadc2fd298bee8 + +PKG_BUILD_PARALLEL:=1 +PKG_BUILD_DEPENDS=e2fsprogs libncurses +PKG_FIXUP:=autoreconf + +include $(INCLUDE_DIR)/package.mk + +define Package/util-linux/Default + SECTION:=utils + CATEGORY:=Utilities + URL:=http://www.kernel.org/pub/linux/utils/util-linux/ +endef + +CONFIGURE_VARS += \ + scanf_cv_type_modifier="ms" + +CONFIGURE_ARGS += \ + --disable-nls \ + --disable-tls + +define Package/cfdisk +$(call Package/util-linux/Default) + SUBMENU:=disc + TITLE:=Partition table manipulation utility + DEPENDS:= +libncurses +endef + +define Package/cfdisk/description + This package contains a utility for managing disk partition tables. +endef + +define Package/fdisk +$(call Package/util-linux/Default) + TITLE:=Partition table manipulation utility + SUBMENU=disc +endef + +define Package/fdisk/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/getopt +$(call Package/util-linux/Default) + TITLE:=Tool for parsing command parameters +endef + +define Package/getopt/description + getopt is a program to help shell scripts parse command-line parameters. +endef + +define Package/hwclock +$(call Package/util-linux/Default) + TITLE:=Utilities for managing the hardware clock +endef + +define Package/hwclock/description + This package contains a utility for managing the hardware clock. +endef + +define Package/losetup +$(call Package/util-linux/Default) + TITLE:=Loopback devices setup and control utility +endef + +define Package/losetup/description + This package contains a utility for managing loopback devices. +endef + +define Package/swap-utils +$(call Package/util-linux/Default) + SUBMENU:=disc + TITLE:=Swap space management utilities + DEPENDS+= +libblkid +libuuid +endef + +define Package/swap-utils/description + This package contains a collection of tools for managing swap space: + - mkswap + - swapon + - swapoff +endef + +define Package/mount-utils +$(call Package/util-linux/Default) + TITLE:=Devices mount/unmounting utilities + DEPENDS+= +libblkid +libuuid +endef + +define Package/mount-utils/description + This package contains utilities to mount/unmount devices. +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. +endef + +define Build/Compile + $(MAKE) -C $(PKG_BUILD_DIR)/disk-utils mkswap + $(MAKE) -C $(PKG_BUILD_DIR)/fdisk cfdisk fdisk sfdisk + $(MAKE) -C $(PKG_BUILD_DIR)/getopt getopt + $(MAKE) -C $(PKG_BUILD_DIR)/hwclock hwclock + $(MAKE) -C $(PKG_BUILD_DIR)/mount losetup mount swapon umount + $(MAKE) -C $(PKG_BUILD_DIR)/sys-utils flock + $(MAKE) -C $(PKG_BUILD_DIR)/term-utils setterm script +endef + +define Package/cfdisk/install + $(INSTALL_DIR) $(1)/sbin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/fdisk/.libs/cfdisk $(1)/sbin/ +endef + +define Package/fdisk/install + $(INSTALL_DIR) $(1)/sbin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/fdisk/.libs/fdisk $(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/getopt/install + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/getopt/getopt $(1)/usr/bin/ +endef + +define Package/hwclock/install + $(INSTALL_DIR) $(1)/sbin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/hwclock/hwclock $(1)/sbin/ +endef + +define Package/losetup/install + $(INSTALL_DIR) $(1)/sbin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/mount/losetup $(1)/sbin/ +endef + +define Package/swap-utils/install + $(INSTALL_DIR) $(1)/sbin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/disk-utils/.libs/mkswap $(1)/sbin/ + $(INSTALL_BIN) $(PKG_BUILD_DIR)/mount/.libs/swapon $(1)/sbin/ + ln -sf swapon $(1)/sbin/swapoff +endef + +define Package/mount-utils/install + $(INSTALL_DIR) $(1)/bin/ + $(INSTALL_BIN) $(PKG_BUILD_DIR)/mount/.libs/{u,}mount $(1)/bin +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)/term-utils/setterm $(1)/usr/bin/ +endef + +define Package/script/install + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/term-utils/script $(1)/usr/bin/ +endef + +$(eval $(call BuildPackage,cfdisk)) +$(eval $(call BuildPackage,fdisk)) +$(eval $(call BuildPackage,sfdisk)) +$(eval $(call BuildPackage,getopt)) +$(eval $(call BuildPackage,hwclock)) +$(eval $(call BuildPackage,losetup)) +$(eval $(call BuildPackage,swap-utils)) +$(eval $(call BuildPackage,mount-utils)) +$(eval $(call BuildPackage,flock)) +$(eval $(call BuildPackage,setterm)) +$(eval $(call BuildPackage,script))