| 12345678910111213141516171819202122232425262728293031323334353637383940414243 | # $Id$#-# 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.mkPKG_NAME:=		util-linuxPKG_VERSION:=		2.12rPKG_RELEASE:=		1PKG_MD5SUM:=		c261230b27fc0fbcc287c76884caf2d3PKG_DESCR:=		Linux utilitiesPKG_SECTION:=		adminPKG_SITES:=		${MASTER_SITE_KERNEL:=utils/util-linux/}PKG_DESCR_1:=		Partition table manipulation utilityPKG_DESCR_2:=		Swap space management utilitiesPKG_DESCR_3:=		Loop devices setup and control utilityPKG_DEPENDS_3:=		kmod-loopinclude ${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:=	gnuBUILD_STYLE:=		autoINSTALL_STYLE:=		autoMAKE_FLAGS+=		OPT="${TCFLAGS}" ARCH="${ARCH}"FAKE_FLAGS+=		INSTALLSUID="install -m 4755"TCFLAGS+=		-DSWAPON_HAS_TWO_ARGS -DHAVE_LLSEEKpost-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
 |