diff options
author | 2005-01-27 21:02:18 +0000 | |
---|---|---|
committer | 2005-01-27 21:02:18 +0000 | |
commit | 6794e0f5b20145609c6b6de6c0bf8886c94c8cc4 (patch) | |
tree | 0e4941305a6780619b8950713d5ff5f91a052eee /www-servers/fnord | |
parent | added diet local use flag to fnord (diff) | |
download | gentoo-2-6794e0f5b20145609c6b6de6c0bf8886c94c8cc4.tar.gz gentoo-2-6794e0f5b20145609c6b6de6c0bf8886c94c8cc4.tar.bz2 gentoo-2-6794e0f5b20145609c6b6de6c0bf8886c94c8cc4.zip |
fixed DEPEND
Diffstat (limited to 'www-servers/fnord')
-rw-r--r-- | www-servers/fnord/fnord-1.8.ebuild | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/www-servers/fnord/fnord-1.8.ebuild b/www-servers/fnord/fnord-1.8.ebuild index 3d26dbb84e27..a0a9075eb8ff 100644 --- a/www-servers/fnord/fnord-1.8.ebuild +++ b/www-servers/fnord/fnord-1.8.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/www-servers/fnord/fnord-1.8.ebuild,v 1.5 2005/01/26 23:23:54 xmerlin Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-servers/fnord/fnord-1.8.ebuild,v 1.6 2005/01/27 21:02:18 xmerlin Exp $ # flag-o-matic needed for replace-sparc64-flags inherit flag-o-matic eutils @@ -9,14 +9,14 @@ DESCRIPTION="Yet another small httpd." SRC_URI="http://www.fefe.de/fnord/${P}.tar.bz2 mirror://gentoo/${P}-gentoo.diff" HOMEPAGE="http://www.fefe.de/fnord/" -IUSE="diet" KEYWORDS="~x86 sparc ppc" SLOT="0" LICENSE="GPL-2" +IUSE="diet" -#DEPEND="diet? ( dev-libs/dietlibc ) -# !diet? ( virtual/libc )" +DEPEND="diet?(dev-libs/dietlibc) + !diet? ( virtual/libc )" RDEPEND="${DEPEND} sys-apps/daemontools @@ -46,6 +46,8 @@ src_unpack() { } src_compile() { + local DIET + use diet && DIET=diet || DIET="" emake DIET="$DIET" } |