diff options
author | Bart Verwilst <verwilst@gentoo.org> | 2001-12-08 10:31:17 +0000 |
---|---|---|
committer | Bart Verwilst <verwilst@gentoo.org> | 2001-12-08 10:31:17 +0000 |
commit | 89e8a8715fb576e8a66e0fbaafcae0ef1dcf3bf0 (patch) | |
tree | 71a2d019f4120fa2c73af5c11b1f80878df40521 /net-im/licq | |
parent | fixes so that kde-enabled version compiles correctly (diff) | |
download | historical-89e8a8715fb576e8a66e0fbaafcae0ef1dcf3bf0.tar.gz historical-89e8a8715fb576e8a66e0fbaafcae0ef1dcf3bf0.tar.bz2 historical-89e8a8715fb576e8a66e0fbaafcae0ef1dcf3bf0.zip |
Removed old version of Licq, now that new inheriting one is in portage
Diffstat (limited to 'net-im/licq')
-rw-r--r-- | net-im/licq/files/digest-licq-1.0.3-r2 | 1 | ||||
-rw-r--r-- | net-im/licq/licq-1.0.3-r2.ebuild | 64 |
2 files changed, 0 insertions, 65 deletions
diff --git a/net-im/licq/files/digest-licq-1.0.3-r2 b/net-im/licq/files/digest-licq-1.0.3-r2 deleted file mode 100644 index 6432d1b5570e..000000000000 --- a/net-im/licq/files/digest-licq-1.0.3-r2 +++ /dev/null @@ -1 +0,0 @@ -MD5 894d7c27c0799c8b31dda134fe14b257 licq-1.0.3.tar.gz 2113536 diff --git a/net-im/licq/licq-1.0.3-r2.ebuild b/net-im/licq/licq-1.0.3-r2.ebuild deleted file mode 100644 index 124a20097a41..000000000000 --- a/net-im/licq/licq-1.0.3-r2.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2001 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Author Donny Davies <woodchip@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/net-im/licq/licq-1.0.3-r2.ebuild,v 1.5 2001/11/13 23:59:22 verwilst Exp $ - -A=${P}.tar.gz -S=${WORKDIR}/${P} -DESCRIPTION="licq" -SRC_URI="http://download.sourceforge.net/${PN}/${A} - ftp://ftp.fanfic.org/pub/${PN}/srcs/${A} - ftp://licq.darkorb.net/${A} - ftp://ftp.fr.licq.org/pub/${PN}/srcs/${A} - ftp://ftp.ru.licq.org/pub/${PN}/srcs/${A} - ftp://ftp.pt.licq.org/pub/mirrors/${PN}/srcs/${A} - ftp://mirror.itcnet.ro/pub/${PN}/srcs/${A}" -HOMEPAGE="http://www.licq.org" - -DEPEND="virtual/glibc - ssl? ( >=dev-libs/openssl-0.9.6 ) - qt? ( >=x11-libs/qt-x11-2.2.1 ) - kde? ( >=kde-base/kdebase-2.1 )" - -src_compile() { - local myconf - local myconf2 - - if [ -z "`use ssl`" ] - then - myconf="--disable-openssl" - fi - - if [ "`use socks5`" ] - then - myconf="${myconf} --enable-socks5" - fi - - ./configure --host=${CHOST} --prefix=/usr ${myconf} || die - make || die - - if [ "`use qt`" ] - then - if [ "`use kde`" ] - then - myconf2="--with-kde" - fi - cd ./plugins/qt-gui-1.0.3 - ./configure --host=${CHOST} --prefix=/usr ${myconf2} || die - make || die - cd ../.. - fi -} - -src_install() { - make prefix=${D}/usr install || die - dodoc README.OPENSSL doc/* - - if [ "`use qt`" ] - then - cd ./plugins/qt-gui-1.0.3 - make prefix=${D}/usr install || die - cd ../.. - fi -} - |