diff options
author | Markus Ullmann <jokey@gentoo.org> | 2007-08-23 19:23:02 +0000 |
---|---|---|
committer | Markus Ullmann <jokey@gentoo.org> | 2007-08-23 19:23:02 +0000 |
commit | 208d3f31a939f917ea30f921c38c0bdde8697e2e (patch) | |
tree | 5e1cf49d639d4fc2cfa145a301397f3241c6c302 /net-im | |
parent | security fix to ~arch (diff) | |
download | gentoo-2-208d3f31a939f917ea30f921c38c0bdde8697e2e.tar.gz gentoo-2-208d3f31a939f917ea30f921c38c0bdde8697e2e.tar.bz2 gentoo-2-208d3f31a939f917ea30f921c38c0bdde8697e2e.zip |
more cleanup
(Portage version: 2.1.3.6)
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/micq/ChangeLog | 5 | ||||
-rw-r--r-- | net-im/micq/micq-0.5.4.2.ebuild | 29 |
2 files changed, 17 insertions, 17 deletions
diff --git a/net-im/micq/ChangeLog b/net-im/micq/ChangeLog index 9e264f62a026..286d1f8c518e 100644 --- a/net-im/micq/ChangeLog +++ b/net-im/micq/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-im/micq # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/micq/ChangeLog,v 1.44 2007/08/23 19:15:40 jokey Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/micq/ChangeLog,v 1.45 2007/08/23 19:23:02 jokey Exp $ + + 23 Aug 2007; Markus Ullmann <jokey@gentoo.org> micq-0.5.4.2.ebuild: + more cleanup 23 Aug 2007; Markus Ullmann <jokey@gentoo.org> metadata.xml, -micq-0.4.12.ebuild, -micq-0.5.1.ebuild, -micq-0.5.2.ebuild: diff --git a/net-im/micq/micq-0.5.4.2.ebuild b/net-im/micq/micq-0.5.4.2.ebuild index 3300d4f35c82..193a8656e647 100644 --- a/net-im/micq/micq-0.5.4.2.ebuild +++ b/net-im/micq/micq-0.5.4.2.ebuild @@ -1,32 +1,29 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/micq/micq-0.5.4.2.ebuild,v 1.1 2007/08/23 19:10:34 jokey Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/micq/micq-0.5.4.2.ebuild,v 1.2 2007/08/23 19:23:02 jokey Exp $ -IUSE="tcl ssl" - -SRC_URI="http://www.micq.org/source/${P}.tgz" DESCRIPTION="ICQ text-mode client with many features" HOMEPAGE="http://www.micq.org/" -LICENSE="GPL-2" +SRC_URI="http://www.micq.org/source/${P}.tgz" +LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86" -DEPEND="virtual/libc - ssl? ( >=net-libs/gnutls-0.8.10 - dev-libs/openssl ) +IUSE="tcl ssl" + +DEPEND="ssl? ( >=net-libs/gnutls-0.8.10 dev-libs/openssl ) tcl? ( dev-lang/tcl )" src_compile() { - - econf `use_enable tcl` \ - `use_enable ssl` \ + econf \ + $(use_enable tcl) \ + $(use_enable ssl) \ || die "econf failed" - emake || die + + emake || die "emake failed" } src_install() { - - make DESTDIR=${D} install || die - - dodoc COPYING AUTHORS ChangeLog FAQ INSTALL NEWS README TODO + emake DESTDIR=${D} install || die "emake install failed" + dodoc AUTHORS ChangeLog FAQ INSTALL NEWS README TODO } |