diff options
author | Ned Ludd <solar@gentoo.org> | 2004-07-22 11:52:04 +0000 |
---|---|---|
committer | Ned Ludd <solar@gentoo.org> | 2004-07-22 11:52:04 +0000 |
commit | 2dd530ab5e1fd8ff1259bf9a0c3f97b4fc7cbb4e (patch) | |
tree | 76854d4f2aab0fd3fa9f52a97bed661c0460d86e /sys-apps/file | |
parent | Added to ~sparc. Moved config stuff to postinst. (diff) | |
download | historical-2dd530ab5e1fd8ff1259bf9a0c3f97b4fc7cbb4e.tar.gz historical-2dd530ab5e1fd8ff1259bf9a0c3f97b4fc7cbb4e.tar.bz2 historical-2dd530ab5e1fd8ff1259bf9a0c3f97b4fc7cbb4e.zip |
enable shared support for uclibc
Diffstat (limited to 'sys-apps/file')
-rw-r--r-- | sys-apps/file/ChangeLog | 5 | ||||
-rw-r--r-- | sys-apps/file/Manifest | 4 | ||||
-rw-r--r-- | sys-apps/file/file-4.09.ebuild | 17 |
3 files changed, 16 insertions, 10 deletions
diff --git a/sys-apps/file/ChangeLog b/sys-apps/file/ChangeLog index 7c27a89654cd..72e29595b38e 100644 --- a/sys-apps/file/ChangeLog +++ b/sys-apps/file/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-apps/file # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.52 2004/07/14 15:24:01 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.53 2004/07/22 11:52:04 solar Exp $ + + 22 Jul 2004; <solar@gentoo.org> file-4.09.ebuild: + enable shared support for uclibc 14 Jul 2004; Mike Frysinger <vapier@gentoo.org> file-4.09.ebuild: Make sure when building the python component we link against the current diff --git a/sys-apps/file/Manifest b/sys-apps/file/Manifest index 78ec603feb63..1b138cb7ec24 100644 --- a/sys-apps/file/Manifest +++ b/sys-apps/file/Manifest @@ -2,9 +2,9 @@ MD5 bc885fe3857d9e8857f3344378892ef9 file-4.07-r1.ebuild 1604 MD5 cb23301c27d4a9fd31c6b5100e41a18c file-3.41.ebuild 997 MD5 c32338854415c421bedb779cdd25b42c file-4.07.ebuild 1552 MD5 720ff71d900c2c319fdc992a6abf8474 file-4.02.ebuild 1000 -MD5 6dae6316fdd7d14527d2579c9a1ed7a2 file-4.09.ebuild 1825 +MD5 25180390528268c7b665df6292e38a91 file-4.09.ebuild 1966 MD5 f70e8a6a8a387e07b8ded7c60fc7cfc8 file-4.06.ebuild 1666 -MD5 b500631ea9a110818fa94a27be40521e ChangeLog 7499 +MD5 31bddfd736748b4815ad3a0736aa3820 ChangeLog 7586 MD5 9a09f8d531c582e78977dbfd96edc1f2 metadata.xml 164 MD5 9e4946a051f74d1a9aacb75badfafdb1 file-4.08.ebuild 1541 MD5 ea5caf65874cda8c3f3d5baace9c73f8 files/digest-file-4.07-r1 61 diff --git a/sys-apps/file/file-4.09.ebuild b/sys-apps/file/file-4.09.ebuild index a45d938d02c7..27063c126cc4 100644 --- a/sys-apps/file/file-4.09.ebuild +++ b/sys-apps/file/file-4.09.ebuild @@ -1,9 +1,8 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/file-4.09.ebuild,v 1.10 2004/07/14 15:24:01 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/file-4.09.ebuild,v 1.11 2004/07/22 11:52:04 solar Exp $ -inherit flag-o-matic gnuconfig eutils -use python && inherit distutils +inherit flag-o-matic gnuconfig eutils distutils DESCRIPTION="Program to identify a file's format by scanning binary data for patterns" HOMEPAGE="ftp://ftp.astron.com/pub/file/" @@ -26,10 +25,14 @@ src_unpack() { # This patch is for MIPS only. It slightly changes the 'file' output # on MIPS machines to a specific format so that other programs can # recognize things. - if use mips ; then - epatch ${FILESDIR}/${PN}-4.xx-mips-gentoo.diff - gnuconfig_update - fi + use mips && epatch ${FILESDIR}/${PN}-4.xx-mips-gentoo.diff + + # uclibc support + epatch ${FILESDIR}/${PN}-4.08-uclibc.patch + epatch ${FILESDIR}/ltconfig-uclibc.patch + + # gnuconfig_update should run for every arch/libc combo not just mips. + gnuconfig_update # make sure python links against the current libmagic #54401 sed -i "/library_dirs/s:'\.\./src':'../src/.libs':" python/setup.py |