diff options
author | Ciaran McCreesh <ciaranm@gentoo.org> | 2005-10-01 22:04:55 +0000 |
---|---|---|
committer | Ciaran McCreesh <ciaranm@gentoo.org> | 2005-10-01 22:04:55 +0000 |
commit | 7f7331bf2ee09a5f63534fc4af53580af20c8ffb (patch) | |
tree | d693254eb31a1fd66959fce103da86513050ebf6 /sys-apps | |
parent | fix invalid atoms (diff) | |
download | historical-7f7331bf2ee09a5f63534fc4af53580af20c8ffb.tar.gz historical-7f7331bf2ee09a5f63534fc4af53580af20c8ffb.tar.bz2 historical-7f7331bf2ee09a5f63534fc4af53580af20c8ffb.zip |
Add --without-included-regex, bug #107638
Package-Manager: portage-2.0.52-r1 cut-price flea-ridden swamp edition
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/findutils/ChangeLog | 5 | ||||
-rw-r--r-- | sys-apps/findutils/Manifest | 10 | ||||
-rw-r--r-- | sys-apps/findutils/findutils-4.2.24.ebuild | 6 |
3 files changed, 12 insertions, 9 deletions
diff --git a/sys-apps/findutils/ChangeLog b/sys-apps/findutils/ChangeLog index eee53835326f..f287267ba536 100644 --- a/sys-apps/findutils/ChangeLog +++ b/sys-apps/findutils/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-apps/findutils # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/findutils/ChangeLog,v 1.49 2005/09/29 00:06:09 ciaranm Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/findutils/ChangeLog,v 1.50 2005/10/01 22:04:55 ciaranm Exp $ + + 01 Oct 2005; Ciaran McCreesh <ciaranm@gentoo.org> findutils-4.2.24.ebuild: + Add --without-included-regex, bug #107638 29 Sep 2005; Ciaran McCreesh <ciaranm@gentoo.org> findutils-4.2.24.ebuild: Comment out selinux patch stuff until the selinux people get their act diff --git a/sys-apps/findutils/Manifest b/sys-apps/findutils/Manifest index 4d90becd35bf..78ff23495d40 100644 --- a/sys-apps/findutils/Manifest +++ b/sys-apps/findutils/Manifest @@ -6,8 +6,8 @@ MD5 7adff12b202c11921f01e3a5cac2ab92 findutils-4.2.23.ebuild 1627 MD5 e63b61d5721b385b5ebde50fa9a285d3 findutils-4.2.18.ebuild 2087 MD5 77afdd0a4bd1f36df4bfe6a006595d7f findutils-4.2.20.ebuild 1891 MD5 1f7197b778d47c773d19430261c84f49 metadata.xml 261 -MD5 0a3397f9e31b76d5f8dda98449150532 ChangeLog 7568 -MD5 c90ead9a405b5e60689765dbab03af4e findutils-4.2.24.ebuild 1685 +MD5 ab508db148816c57912242a986d9c5b0 ChangeLog 7690 +MD5 b6a7d70d17ac0b2f629de8655eea5224 findutils-4.2.24.ebuild 1710 MD5 62f86a597482354916befe2e1f084b8d files/findutils-4.2.18-selinux.diff 15327 MD5 6d52de5b305608054e88b17c5b282048 files/findutils-4.2.20-man.patch 331 MD5 2b5e0b42a11ea009340805d461a6ecc5 files/digest-findutils-4.2.24 69 @@ -23,7 +23,7 @@ MD5 be3f6e925d8c5774cc1ea631677e7401 files/digest-findutils-4.1.20-r1 68 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (GNU/Linux) -iD8DBQFDOzAdLLFUmVNQ7rkRAqYAAJ9wo/AVOzVUPkCBXGA2mEeG0+w4hgCfX/8q -WZUyu8QMuiRXurmwtHVDdQY= -=drdG +iD8DBQFDPwgyLLFUmVNQ7rkRAp7AAKCwzkx0Kknb7KC/JHRB9UgDhX3OQACffqqu +z7Cf5OXY+rkT28d9+kVgJdg= +=LyVd -----END PGP SIGNATURE----- diff --git a/sys-apps/findutils/findutils-4.2.24.ebuild b/sys-apps/findutils/findutils-4.2.24.ebuild index c921d6b923a8..387167dde5a5 100644 --- a/sys-apps/findutils/findutils-4.2.24.ebuild +++ b/sys-apps/findutils/findutils-4.2.24.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/findutils/findutils-4.2.24.ebuild,v 1.3 2005/09/29 00:06:09 ciaranm Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/findutils/findutils-4.2.24.ebuild,v 1.4 2005/10/01 22:04:55 ciaranm Exp $ inherit eutils flag-o-matic toolchain-funcs @@ -35,8 +35,8 @@ src_unpack() { src_compile() { use static && append-ldflags -static - local myconf="" - [[ "${USERLAND}" != "GNU" ]] && myconf="--program-prefix=g" + local myconf="--without-included-regex" + [[ "${USERLAND}" != "GNU" ]] && myconf=" --program-prefix=g" econf $(use_enable nls) ${myconf} || die "configure failed" emake libexecdir=/usr/lib/find AR="$(tc-getAR)" || die "make failed" |