diff options
author | Jan Brinkmann <luckyduck@gentoo.org> | 2005-04-30 09:15:47 +0000 |
---|---|---|
committer | Jan Brinkmann <luckyduck@gentoo.org> | 2005-04-30 09:15:47 +0000 |
commit | 045b54abcff26f59cf44c42a7b038be6aa89c5b5 (patch) | |
tree | 1b279d2508a9ffc857b4b6f224b932b920b518a6 /net-im/micq/micq-0.4.12.ebuild | |
parent | 79791 (diff) | |
download | gentoo-2-045b54abcff26f59cf44c42a7b038be6aa89c5b5.tar.gz gentoo-2-045b54abcff26f59cf44c42a7b038be6aa89c5b5.tar.bz2 gentoo-2-045b54abcff26f59cf44c42a7b038be6aa89c5b5.zip |
stable on amd64
(Portage version: 2.0.51.20-r5)
Diffstat (limited to 'net-im/micq/micq-0.4.12.ebuild')
-rw-r--r-- | net-im/micq/micq-0.4.12.ebuild | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/net-im/micq/micq-0.4.12.ebuild b/net-im/micq/micq-0.4.12.ebuild index 44d0450370a7..7cee9b7e15c9 100644 --- a/net-im/micq/micq-0.4.12.ebuild +++ b/net-im/micq/micq-0.4.12.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/net-im/micq/micq-0.4.12.ebuild,v 1.5 2005/04/25 06:06:20 kloeri Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/micq/micq-0.4.12.ebuild,v 1.6 2005/04/30 09:15:47 luckyduck Exp $ IUSE="tcltk ssl" @@ -11,22 +11,21 @@ HOMEPAGE="http://www.micq.org/" LICENSE="GPL-2" SLOT="0" -KEYWORDS="x86 alpha sparc ~ppc ~amd64" +KEYWORDS="x86 alpha sparc ~ppc amd64" DEPEND="virtual/libc ssl? ( >=net-libs/gnutls-0.8.10 dev-libs/openssl )" src_compile() { - - econf `use_enable tcltk tcl` \ - `use_enable ssl` \ + econf \ + $(use_enable tcltk tcl) \ + $(use_enable ssl) \ || die "econf failed" - emake || die + emake || die "make failed" } src_install() { + make DESTDIR=${D} install || die "make install failed" - make DESTDIR=${D} install || die - - dodoc COPYING AUTHORS ChangeLog FAQ INSTALL NEWS README TODO + dodoc AUTHORS ChangeLog FAQ INSTALL NEWS README TODO } |