[oe-commits] Andreas Oberritter : xfsprogs: misc fixes for recipe

git at git.openembedded.org git at git.openembedded.org
Sat May 5 07:08:05 UTC 2012


Module: meta-openembedded.git
Branch: master
Commit: f769b97271cf4158ec700d32a56d18a756a1ddcb
URL:    http://git.openembedded.org/?p=meta-openembedded.git&a=commit;h=f769b97271cf4158ec700d32a56d18a756a1ddcb

Author: Andreas Oberritter <obi at opendreambox.org>
Date:   Fri May  4 19:29:13 2012 +0000

xfsprogs: misc fixes for recipe

* Only libhandle's license is the LGPLv2.1, all tools are
  licensed under the GPLv2.
* Create seperate package for libhandle.
* Create seperate packages for mkfs.xfs and fsck.xfs
  to save space.
* Use real license file for LIC_FILES_CHKSUM.
* Fix libhandle.so symlink.
* Remove unneeded symlinks from ${base_libdir}

Signed-off-by: Andreas Oberritter <obi at opendreambox.org>
Signed-off-by: Koen Kooi <koen at dominion.thruhere.net>

---

 meta-oe/recipes-support/xfsprogs/xfsprogs_3.1.7.bb |   31 ++++++++++---------
 1 files changed, 16 insertions(+), 15 deletions(-)

diff --git a/meta-oe/recipes-support/xfsprogs/xfsprogs_3.1.7.bb b/meta-oe/recipes-support/xfsprogs/xfsprogs_3.1.7.bb
index 3830887..3bc4897 100644
--- a/meta-oe/recipes-support/xfsprogs/xfsprogs_3.1.7.bb
+++ b/meta-oe/recipes-support/xfsprogs/xfsprogs_3.1.7.bb
@@ -1,11 +1,11 @@
 DESCRIPTION = "XFS Filesystem Utilities"
 HOMEPAGE = "http://oss.sgi.com/projects/xfs"
 SECTION = "base"
-LICENSE = "LGPL2.1"
-
-LIC_FILES_CHKSUM = "file://Makefile;endline=3;md5=def2844770bb44eba37bc9ca8610fad4"
-
+LICENSE = "GPLv2"
+LICENSE_libhandle = "LGPLv2.1"
+LIC_FILES_CHKSUM = "file://doc/COPYING;md5=dbdb5f4329b7e7145de650e9ecd4ac2a"
 DEPENDS = "util-linux"
+PR = "r1"
 
 SRC_URI = "ftp://oss.sgi.com/projects/xfs/cmd_tars/${P}.tar.gz \
 	file://remove-install-as-user.patch \
@@ -15,8 +15,13 @@ SRC_URI[sha256sum] = "e150914210ac5fd29c098ef0fd94bdec51d2fb231cf9faa765c16ec6d7
 
 inherit autotools
 
-FILES_${PN}-dev += "${base_libdir}/libhandle.la \
-                    ${base_libdir}/libhandle.so"
+PACKAGES =+ "${PN}-fsck ${PN}-mkfs libhandle"
+
+RDEPENDS_${PN} = "${PN}-fsck ${PN}-mkfs"
+
+FILES_${PN}-fsck = "${base_sbindir}/fsck.xfs"
+FILES_${PN}-mkfs = "${base_sbindir}/mkfs.xfs"
+FILES_libhandle = "${base_libdir}/libhandle${SOLIBS}"
 
 EXTRA_OECONF = "--enable-gettext=no"
 do_configure () {
@@ -34,13 +39,9 @@ do_install () {
 	oe_runmake install
 	# needed for xfsdump
 	oe_runmake install-dev
-	# replace extra links to /usr/lib with relative links (otherwise autotools_prepackage_lamangler fails to read nonexistent link)
-	rm -f ${D}/${base_libdir}/libhandle.la
-	rm -f ${D}/${base_libdir}/libhandle.a
-	ln -s ../usr/lib/libhandle.la ${D}/${base_libdir}/libhandle.la
-	ln -s ../usr/lib/libhandle.a ${D}/${base_libdir}/libhandle.a
-
-	# and link from /usr/lib/libhandle.so to /lib/libhandle.so
-	rm -f ${D}/${libdir}/libhandle.so
-	ln -s ../../lib/libhandle.a ${D}/${libdir}/libhandle.so
+	rm ${D}${base_libdir}/libhandle.a
+	rm ${D}${base_libdir}/libhandle.la
+	rm ${D}${base_libdir}/libhandle.so
+	rm ${D}${libdir}/libhandle.so
+	ln -s ../..${base_libdir}/libhandle.so.1 ${D}${libdir}/libhandle.so
 }





More information about the Openembedded-commits mailing list