summaryrefslogtreecommitdiff
path: root/package/util-linux/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2009-06-25 21:08:41 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2009-06-25 21:08:41 +0200
commit5cdeab06fe5b553185040d125da74b12f5ac6442 (patch)
tree91f2012fa4a7f13f4f6e87e13e5c854fea251fe4 /package/util-linux/Makefile
parentc98552118a8925f3927056294418543cdba736f7 (diff)
parent6f58e88ce0c721c8954898f81c9fbf8088fcba13 (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/util-linux/Makefile')
-rw-r--r--package/util-linux/Makefile41
1 files changed, 0 insertions, 41 deletions
diff --git a/package/util-linux/Makefile b/package/util-linux/Makefile
deleted file mode 100644
index ccf9e2677..000000000
--- a/package/util-linux/Makefile
+++ /dev/null
@@ -1,41 +0,0 @@
-# This file is part of the OpenADK project. OpenADK is copyrighted
-# material, please see the LICENCE file in the top-level directory.
-
-include ${TOPDIR}/rules.mk
-
-PKG_NAME:= util-linux
-PKG_VERSION:= 2.12r
-PKG_RELEASE:= 1
-PKG_MD5SUM:= c261230b27fc0fbcc287c76884caf2d3
-PKG_DESCR:= Linux utilities
-PKG_SECTION:= admin
-PKG_SITES:= ${MASTER_SITE_KERNEL:=utils/util-linux/}
-
-PKG_DESCR_1:= Partition table manipulation utility
-PKG_DESCR_2:= Swap space management utilities
-PKG_DESCR_3:= Loop devices setup and control utility
-PKG_DEPENDS_3:= kmod-loop
-
-include ${TOPDIR}/mk/package.mk
-
-$(eval $(call PKG_template,FDISK,fdisk,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR_1},${PKG_SECTION}))
-$(eval $(call PKG_template,SWAP_UTILS,swap-utils,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR_2},${PKG_SECTION}))
-$(eval $(call PKG_template,LOSETUP,losetup,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS_3},${PKG_DESCR_3},${PKG_SECTION}))
-
-CONFIGURE_STYLE:= gnu
-BUILD_STYLE:= auto
-INSTALL_STYLE:= auto
-MAKE_FLAGS+= OPT="${TCFLAGS}" ARCH="${ARCH}"
-FAKE_FLAGS+= INSTALLSUID="install -m 4755"
-TCFLAGS+= -DSWAPON_HAS_TWO_ARGS -DHAVE_LLSEEK
-
-post-install:
- ${INSTALL_DIR} ${IDIR_FDISK}/usr/sbin
- ${CP} ${WRKINST}/sbin/fdisk ${IDIR_FDISK}/usr/sbin/
- ${INSTALL_DIR} ${IDIR_LOSETUP}/usr/sbin
- ${CP} ${WRKINST}/sbin/losetup ${IDIR_LOSETUP}/usr/sbin/
- ${INSTALL_DIR} ${IDIR_SWAP_UTILS}/usr/sbin
- ${CP} ${WRKINST}/sbin/mkswap ${IDIR_SWAP_UTILS}/usr/sbin/
- ${CP} ${WRKINST}/sbin/swap{on,off} ${IDIR_SWAP_UTILS}/usr/sbin/
-
-include ${TOPDIR}/mk/pkg-bottom.mk