diff options
author | Daniel Ahlberg <aliz@gentoo.org> | 2003-05-20 09:46:26 +0000 |
---|---|---|
committer | Daniel Ahlberg <aliz@gentoo.org> | 2003-05-20 09:46:26 +0000 |
commit | 9fddd6c7b678f6bfad44b83becba48abf4df2849 (patch) | |
tree | 69e9987b5c13ba8229ea1c65b16d0f1bd48b3562 /net-im | |
parent | Adding portage-2.0.48 (diff) | |
download | historical-9fddd6c7b678f6bfad44b83becba48abf4df2849.tar.gz historical-9fddd6c7b678f6bfad44b83becba48abf4df2849.tar.bz2 historical-9fddd6c7b678f6bfad44b83becba48abf4df2849.zip |
and now it compiles
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/sim/sim-0.8.2.ebuild | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/net-im/sim/sim-0.8.2.ebuild b/net-im/sim/sim-0.8.2.ebuild index 0f1f2ac95c78..4750f49d9dc0 100644 --- a/net-im/sim/sim-0.8.2.ebuild +++ b/net-im/sim/sim-0.8.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/sim/sim-0.8.2.ebuild,v 1.1 2003/05/20 06:20:49 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/sim/sim-0.8.2.ebuild,v 1.2 2003/05/20 09:46:26 aliz Exp $ IUSE="ssl kde" [ -n "`use kde`" ] && inherit kde-base @@ -30,14 +30,20 @@ else myconf="$myconf --disable-kde" fi +need-automake 1.5 +need-autoconf 2.5 + PATCHES="${FILESDIR}/${P}-nostl.diff" src_compile() { - [ -n "`use kde`" ] && kde_src_compile myconf + make -f admin/Makefile.common + + myconf="$myconf --without-gkrellm_plugin" + [ -n "`use kde`" ] && kde_src_compile myconf myconf="$myconf --prefix=/usr" - econf $myconf || die - emake || die + econf $myconf --without-gkrellm || die + make || die } src_install() { |