diff options
author | Marcelo Góes <vanquirius@gentoo.org> | 2008-12-13 16:50:32 +0000 |
---|---|---|
committer | Marcelo Góes <vanquirius@gentoo.org> | 2008-12-13 16:50:32 +0000 |
commit | b807a2bf16662edb5b119a27358c2d932efaeec4 (patch) | |
tree | 4e71ac8d9975e774f5e16a0154dc0fd35f0554c4 /sys-fs/encfs | |
parent | alpha/arm/ia64/sparc/x86 stable wrt #249942 (diff) | |
download | gentoo-2-b807a2bf16662edb5b119a27358c2d932efaeec4.tar.gz gentoo-2-b807a2bf16662edb5b119a27358c2d932efaeec4.tar.bz2 gentoo-2-b807a2bf16662edb5b119a27358c2d932efaeec4.zip |
Add autotools magic to deal with broken --as-needed for bug 245782.
Thanks to Diego Petteno <flameeyes at gentoo dot org>, Alexandre
Rostovtsev <tetromino at gmail dot com> and Vlastimil Babka <caster at
gentoo dot org>.
(Portage version: 2.1.4.5)
Diffstat (limited to 'sys-fs/encfs')
-rw-r--r-- | sys-fs/encfs/ChangeLog | 7 | ||||
-rw-r--r-- | sys-fs/encfs/encfs-1.5.ebuild | 8 |
2 files changed, 12 insertions, 3 deletions
diff --git a/sys-fs/encfs/ChangeLog b/sys-fs/encfs/ChangeLog index d260ef28978c..876fb0f557e8 100644 --- a/sys-fs/encfs/ChangeLog +++ b/sys-fs/encfs/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-fs/encfs # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/encfs/ChangeLog,v 1.38 2008/12/13 16:43:00 vanquirius Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/encfs/ChangeLog,v 1.39 2008/12/13 16:50:32 vanquirius Exp $ + + 13 Dec 2008; Marcelo Goes <vanquirius@gentoo.org> encfs-1.5.ebuild: + Add autotools magic to deal with broken --as-needed for bug 245782. Thanks + to Diego Petteno <flameeyes at gentoo dot org>, Alexandre Rostovtsev + <tetromino at gmail dot com> and Vlastimil Babka <caster at gentoo dot org>. 13 Dec 2008; Marcelo Goes <vanquirius@gentoo.org> -encfs-1.2.5.1.ebuild, -encfs-1.3.1.1.ebuild, -encfs-1.3.2.1.ebuild, -encfs-1.3.2.1-r1.ebuild, diff --git a/sys-fs/encfs/encfs-1.5.ebuild b/sys-fs/encfs/encfs-1.5.ebuild index 082c048c79a2..18cc8834a036 100644 --- a/sys-fs/encfs/encfs-1.5.ebuild +++ b/sys-fs/encfs/encfs-1.5.ebuild @@ -1,8 +1,10 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/encfs/encfs-1.5.ebuild,v 1.4 2008/12/01 20:35:24 bluebird Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/encfs/encfs-1.5.ebuild,v 1.5 2008/12/13 16:50:32 vanquirius Exp $ -inherit eutils +WANT_AUTOMAKE="1.10" + +inherit eutils autotools MY_P="${P}-2" @@ -23,7 +25,9 @@ DEPEND=">=dev-libs/openssl-0.9.7 src_unpack() { unpack ${A} cd "${S}" + # bug 245782 - sys-fs/encfs-1.5 fails to build with --as-needed epatch "${FILESDIR}"/${P}-boost-system-and-as-needed.patch + eautomake } src_compile() { |