diff options
author | Mounir Lamouri <volkmar@gentoo.org> | 2009-07-31 09:20:08 +0000 |
---|---|---|
committer | Mounir Lamouri <volkmar@gentoo.org> | 2009-07-31 09:20:08 +0000 |
commit | fc3829621c09f3b39c0a671562e83cb4a276e543 (patch) | |
tree | 9cfb6d24473e7ad85b845710ae2b29c44a68c937 /app-admin | |
parent | Obsolete package.mask, remove it. Missing header. (diff) | |
download | gentoo-2-fc3829621c09f3b39c0a671562e83cb4a276e543.tar.gz gentoo-2-fc3829621c09f3b39c0a671562e83cb4a276e543.tar.bz2 gentoo-2-fc3829621c09f3b39c0a671562e83cb4a276e543.zip |
Add static USE flag.
Bug 131816.
Thanks to Eric Martin.
(Portage version: 13856-svn/cvs/Linux i686)
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/tripwire/ChangeLog | 5 | ||||
-rw-r--r-- | app-admin/tripwire/tripwire-2.4.1.2.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/app-admin/tripwire/ChangeLog b/app-admin/tripwire/ChangeLog index 5d4ec85349b4..0be31d90ccb1 100644 --- a/app-admin/tripwire/ChangeLog +++ b/app-admin/tripwire/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-admin/tripwire # Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/tripwire/ChangeLog,v 1.28 2009/01/04 19:28:01 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/tripwire/ChangeLog,v 1.29 2009/07/31 09:20:08 volkmar Exp $ + + 31 Jul 2009; Mounir Lamouri <volkmar@gentoo.org> tripwire-2.4.1.2.ebuild: + Add static USE flag. Fix bug 131816. Thanks to Eric Martin. *tripwire-2.4.1.2 (04 Jan 2009) diff --git a/app-admin/tripwire/tripwire-2.4.1.2.ebuild b/app-admin/tripwire/tripwire-2.4.1.2.ebuild index 7af17379fb15..c4dedf1fb7b5 100644 --- a/app-admin/tripwire/tripwire-2.4.1.2.ebuild +++ b/app-admin/tripwire/tripwire-2.4.1.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/tripwire/tripwire-2.4.1.2.ebuild,v 1.1 2009/01/04 19:28:01 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/tripwire/tripwire-2.4.1.2.ebuild,v 1.2 2009/07/31 09:20:08 volkmar Exp $ inherit eutils flag-o-matic autotools @@ -15,7 +15,7 @@ SRC_URI="mirror://sourceforge/tripwire/tripwire-${TW_VER}.tar.gz LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd" -IUSE="ssl" +IUSE="ssl static" DEPEND="virtual/libc sys-devel/automake @@ -58,7 +58,7 @@ src_compile() { eend einfo "Done." chmod +x configure - econf `use_enable ssl openssl` || die + econf $(use_enable ssl openssl) $(use_enable static) emake || die } |