diff options
author | Aaron Walker <ka0ttic@gentoo.org> | 2005-06-28 13:47:01 +0000 |
---|---|---|
committer | Aaron Walker <ka0ttic@gentoo.org> | 2005-06-28 13:47:01 +0000 |
commit | c6aca6a2c6020fdf6df9d14f7db6c0513c67efdb (patch) | |
tree | 6d42cc7c5aa35a6a7ae2c3387943e9fed3f137a5 /www-servers/pound/pound-1.8.3.ebuild | |
parent | Version bump; 2.6.1 stable on x86. Fixed deps. (diff) | |
download | gentoo-2-c6aca6a2c6020fdf6df9d14f7db6c0513c67efdb.tar.gz gentoo-2-c6aca6a2c6020fdf6df9d14f7db6c0513c67efdb.tar.bz2 gentoo-2-c6aca6a2c6020fdf6df9d14f7db6c0513c67efdb.zip |
Added static support via USE=static for bug 84482.
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'www-servers/pound/pound-1.8.3.ebuild')
-rw-r--r-- | www-servers/pound/pound-1.8.3.ebuild | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/www-servers/pound/pound-1.8.3.ebuild b/www-servers/pound/pound-1.8.3.ebuild index e1b3036e1469..d26ba81feba0 100644 --- a/www-servers/pound/pound-1.8.3.ebuild +++ b/www-servers/pound/pound-1.8.3.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/pound/pound-1.8.3.ebuild,v 1.3 2005/04/30 08:02:31 kloeri Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-servers/pound/pound-1.8.3.ebuild,v 1.4 2005/06/28 13:47:01 ka0ttic Exp $ + +inherit flag-o-matic MY_P="${P/p/P}" DESCRIPTION="A http/https reverse-proxy and load-balancer." @@ -10,7 +12,7 @@ HOMEPAGE="http://www.apsis.ch/pound/" LICENSE="GPL-2" SLOT="0" KEYWORDS="x86 ppc ~sparc alpha ~mips ~hppa" -IUSE="ssl msdav unsafe" +IUSE="ssl msdav unsafe static" DEPEND="virtual/libc ssl? ( dev-libs/openssl )" @@ -18,11 +20,14 @@ DEPEND="virtual/libc S="${WORKDIR}/${MY_P}" src_compile() { + use static && append-ldflags -static + econf \ $(use_with ssl) \ $(use_enable msdav) \ $(use_enable unsafe) \ || die "configure failed" + emake || die "compile failed" } |