diff options
author | Bart Verwilst <verwilst@gentoo.org> | 2002-02-09 11:47:57 +0000 |
---|---|---|
committer | Bart Verwilst <verwilst@gentoo.org> | 2002-02-09 11:47:57 +0000 |
commit | 747a94441c28035636e88d73b2fd731c7b53b722 (patch) | |
tree | ce8265bcc3cae0ae440f4bb4203018216c0fa3d0 /net-im/licq | |
parent | update ethereal to 0.9.1 (diff) | |
download | historical-747a94441c28035636e88d73b2fd731c7b53b722.tar.gz historical-747a94441c28035636e88d73b2fd731c7b53b722.tar.bz2 historical-747a94441c28035636e88d73b2fd731c7b53b722.zip |
added SLOT to all net-im ebuilds, removed old version, and
corrected a few general bugs, like try / die and A-vars
Diffstat (limited to 'net-im/licq')
-rw-r--r-- | net-im/licq/files/digest-licq-1.0.4 | 1 | ||||
-rw-r--r-- | net-im/licq/licq-1.0.4-r1.ebuild | 6 | ||||
-rw-r--r-- | net-im/licq/licq-1.0.4.ebuild | 53 |
3 files changed, 3 insertions, 57 deletions
diff --git a/net-im/licq/files/digest-licq-1.0.4 b/net-im/licq/files/digest-licq-1.0.4 deleted file mode 100644 index b93adbc0a209..000000000000 --- a/net-im/licq/files/digest-licq-1.0.4 +++ /dev/null @@ -1 +0,0 @@ -MD5 df3e50c1b03aa0cf2ecd1c27af3588e7 licq-1.0.4.tar.bz2 1717078 diff --git a/net-im/licq/licq-1.0.4-r1.ebuild b/net-im/licq/licq-1.0.4-r1.ebuild index baa62ec59378..b26d7a20c67a 100644 --- a/net-im/licq/licq-1.0.4-r1.ebuild +++ b/net-im/licq/licq-1.0.4-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later +# Distributed under the terms of the GNU General Public License v2 # Author Bart Verwilst <verwilst@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/net-im/licq/licq-1.0.4-r1.ebuild,v 1.2 2002/01/09 21:02:03 danarmak Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/licq/licq-1.0.4-r1.ebuild,v 1.3 2002/02/09 11:47:57 verwilst Exp $ . /usr/portage/eclass/inherit.eclass || die use kde && inherit kde-base @@ -9,7 +9,7 @@ S=${WORKDIR}/${P} SRC_URI="http://download.sourceforge.net/licq/${P}.tar.bz2" DESCRIPTION="KDE/QT ICQ Client with v6 support only (UDP)" - +SLOT="0" DEPEND="$DEPEND ssl? ( >=dev-libs/openssl-0.9.6 )" diff --git a/net-im/licq/licq-1.0.4.ebuild b/net-im/licq/licq-1.0.4.ebuild deleted file mode 100644 index f71795a012b6..000000000000 --- a/net-im/licq/licq-1.0.4.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Author Bart Verwilst <verwilst@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/net-im/licq/licq-1.0.4.ebuild,v 1.4 2001/12/13 21:01:01 danarmak Exp $ -. /usr/portage/eclass/inherit.eclass || die -use kde && inherit kde-base - -SRC_URI="http://download.sourceforge.net/licq/${P}.tar.bz2" - -DEPEND="$DEPEND - ssl? ( >=dev-libs/openssl-0.9.6 ) - qt? ( >=x11-libs/qt-x11-2.2.2 )" - -use kde && need-kdelibs 2.1 -use kde && need-qt 2.2 - -src_compile() { - local first_conf - - cd ${S} - make -f Makefile.cvs || die - - use ssl || first_conf = "${first_conf} --disable-openssl" - use socks5 && first_conf = "${first_conf} --enable-socks5" - - ./configure --host=${CHOST} --prefix=/usr ${first_conf} || die - emake || die - - if [ "`use qt`" ] - then - - cd plugins/qt-gui-1.0.4 - make -f Makefile.cvs || die - use kde && kde_src_compile myconf - use kde && second_conf="${second_conf} ${myconf} --with-kde" - ./configure --host=${CHOST} --prefix=/usr ${second_conf} || die - emake || die - - fi - -} - -src_install() { - - cd ${S} - make DESTDIR=${D} install || die - if [ "`use qt`" ] - then - cd plugins/qt-gui-1.0.4 - make DESTDIR=${D} install || die - fi - -} |