From: Nicolas Thill Date: Sat, 25 Aug 2007 15:52:31 +0000 (+0000) Subject: e2fsprogs fixes: - don't bundle libblkid shared lib in e2fsprogs, add a dependency... X-Git-Tag: reboot~28303 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=68e129691ffbbd4cfda5d3a1a00c0957fccd180c e2fsprogs fixes: - don't bundle libblkid shared lib in e2fsprogs, add a dependency instead - remove references to host dev files in pkgconfig files - add Build/UninstallDev SVN-Revision: 8486 --- diff --git a/package/e2fsprogs/Makefile b/package/e2fsprogs/Makefile index 633b555127..9192650c47 100644 --- a/package/e2fsprogs/Makefile +++ b/package/e2fsprogs/Makefile @@ -22,7 +22,7 @@ define Package/e2fsprogs SECTION:=utils CATEGORY:=Utilities TITLE:=Ext2/3 filesystem utilities - DEPENDS:=+libuuid + DEPENDS:=+libblkid +libuuid DESCRIPTION:=\ This package contains essential ext2 filesystem utilities which consists of \\\ e2fsck, mke2fs, debugfs, dumpe2fs, tune2fs, and most of the other core ext2 \\\ @@ -92,6 +92,15 @@ define Build/InstallDev BUILDCC="$(HOSTCC)" \ DESTDIR="$(STAGING_DIR)" \ install-libs + $(SED) 's,-I$$$${includedir},,g' $(STAGING_DIR)/usr/lib/pkgconfig/{blkid,com_err,e2p,ext2fs,ss,uuid}.pc + $(SED) 's,-L$$$${libdir},,g' $(STAGING_DIR)/usr/lib/pkgconfig/{blkid,com_err,e2p,ext2fs,ss,uuid}.pc +endef + +define Build/UninstallDev + -$(MAKE) -C $(PKG_BUILD_DIR) \ + BUILDCC="$(HOSTCC)" \ + DESTDIR="$(STAGING_DIR)" \ + uninstall-libs endef define Package/e2fsprogs/install @@ -101,7 +110,7 @@ define Package/e2fsprogs/install ln -sf mke2fs $(1)/usr/sbin/mkfs.ext2 ln -sf mke2fs $(1)/usr/sbin/mkfs.ext3 $(INSTALL_DIR) $(1)/usr/lib - $(CP) $(foreach lib,blkid com_err e2p ext2fs,$(PKG_INSTALL_DIR)/usr/lib/lib$(lib).so.*) $(1)/usr/lib/ + $(CP) $(foreach lib,com_err e2p ext2fs,$(PKG_INSTALL_DIR)/usr/lib/lib$(lib).so.*) $(1)/usr/lib/ endef define Package/libuuid/install