diff options
author | Dan Armak <danarmak@gentoo.org> | 2002-06-17 20:27:43 +0000 |
---|---|---|
committer | Dan Armak <danarmak@gentoo.org> | 2002-06-17 20:27:43 +0000 |
commit | 1ccbf2bbe648f747ca04f4a5f1811f88b18e1726 (patch) | |
tree | f1801fdda5a529379c3354bd9d9400f521717a89 /net-im | |
parent | Removing old version(s) (diff) | |
download | historical-1ccbf2bbe648f747ca04f4a5f1811f88b18e1726.tar.gz historical-1ccbf2bbe648f747ca04f4a5f1811f88b18e1726.tar.bz2 historical-1ccbf2bbe648f747ca04f4a5f1811f88b18e1726.zip |
Removing old version(s)
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/kmerlin/files/digest-kmerlin-1.0 | 1 | ||||
-rw-r--r-- | net-im/kmerlin/kmerlin-1.0.ebuild | 10 | ||||
-rw-r--r-- | net-im/licq/files/digest-licq-1.0.4-r1 | 1 | ||||
-rw-r--r-- | net-im/licq/licq-1.0.4-r1.ebuild | 67 |
4 files changed, 0 insertions, 79 deletions
diff --git a/net-im/kmerlin/files/digest-kmerlin-1.0 b/net-im/kmerlin/files/digest-kmerlin-1.0 deleted file mode 100644 index f839b5675cef..000000000000 --- a/net-im/kmerlin/files/digest-kmerlin-1.0 +++ /dev/null @@ -1 +0,0 @@ -MD5 5674c1caaa369db5be7211d1b54293a5 kmerlin-1.0.tar.gz 667195 diff --git a/net-im/kmerlin/kmerlin-1.0.ebuild b/net-im/kmerlin/kmerlin-1.0.ebuild deleted file mode 100644 index a25229ffe14d..000000000000 --- a/net-im/kmerlin/kmerlin-1.0.ebuild +++ /dev/null @@ -1,10 +0,0 @@ -# Copyright 1999-2001 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later - -inherit kde-base || die - -S="${WORKDIR}/kmerlin-1.0" -need-kde 3 -DESCRIPTION="KDE MSN Messenger" -SRC_URI="mirror://sourceforge/kmerlin/kmerlin-1.0.tar.gz" -HOMEPAGE="http://kmerlin.olsd.de" diff --git a/net-im/licq/files/digest-licq-1.0.4-r1 b/net-im/licq/files/digest-licq-1.0.4-r1 deleted file mode 100644 index b93adbc0a209..000000000000 --- a/net-im/licq/files/digest-licq-1.0.4-r1 +++ /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 deleted file mode 100644 index aa2a3d5f923b..000000000000 --- a/net-im/licq/licq-1.0.4-r1.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# 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.7 2002/05/21 18:14:11 danarmak Exp $ - -use kde && inherit kde-base - -S=${WORKDIR}/${P} - -SRC_URI="http://download.sourceforge.net/licq/${P}.tar.bz2" -DESCRIPTION="KDE/QT ICQ Client with v6 support only (UDP)" -DEPEND="$DEPEND - ssl? ( >=dev-libs/openssl-0.9.6 ) - qt? ( >=x11-libs/qt-2.2.0 )" - -use kde && need-kde 2.1 - -src_unpack() { - cd ${WORKDIR} - unpack ${A} -} - -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 - # A hack to build against the latest QT: - local v - for v in /usr/qt/[0-9] - do - [ -d "${v}" ] && export QTDIR="${v}" - done - 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" - # note! watch the --prefix=/usr placement; licq itself installs into /usr, but the - # optional kde/qt interface (to which second_conf belogns) installs its files in - # $KDE2DIR/{lib,share}/licq - ./configure --host=${CHOST} ${second_conf} --prefix=/usr || 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 - -} |