summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaleb Tennis <caleb@gentoo.org>2003-11-19 20:06:26 +0000
committerCaleb Tennis <caleb@gentoo.org>2003-11-19 20:06:26 +0000
commit8d092e20ba4a961301e6657abed1c581bf7603ef (patch)
treea418d6dfff6faa45e526861eef3f266025389493 /net-irc/kvirc/kvirc-3.0.0_pre20021217.ebuild
parentremove old versions (diff)
downloadhistorical-8d092e20ba4a961301e6657abed1c581bf7603ef.tar.gz
historical-8d092e20ba4a961301e6657abed1c581bf7603ef.tar.bz2
historical-8d092e20ba4a961301e6657abed1c581bf7603ef.zip
remove an old version
Diffstat (limited to 'net-irc/kvirc/kvirc-3.0.0_pre20021217.ebuild')
-rw-r--r--net-irc/kvirc/kvirc-3.0.0_pre20021217.ebuild71
1 files changed, 0 insertions, 71 deletions
diff --git a/net-irc/kvirc/kvirc-3.0.0_pre20021217.ebuild b/net-irc/kvirc/kvirc-3.0.0_pre20021217.ebuild
deleted file mode 100644
index 925600248c4a..000000000000
--- a/net-irc/kvirc/kvirc-3.0.0_pre20021217.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/kvirc/kvirc-3.0.0_pre20021217.ebuild,v 1.5 2003/09/10 04:56:48 msterret Exp $
-IUSE="kde esd ipv6 ssl"
-inherit kde-base
-
-#MYP=${P//_/-}
-#MYPV=${PV//_/-}
-S=${WORKDIR}/kvirc3.cvs
-DESCRIPTION="An advanced IRC Client"
-SRC_URI="http://cvs.gentoo.org/~danarmak/kvirc-20021217.tar.bz2"
-HOMEPAGE="http://www.kvirc.net"
-
-SLOT="3"
-LICENSE="kvirc"
-KEYWORDS="x86 ~ppc"
-
-use kde && need-kde 3 || need-qt 3
-
-newdepend "esd? ( media-sound/esound )
- ssl? ( dev-libs/openssl )"
-# oss ? ( media-libs/audiofile )"
-use kde || newdepend "arts? ( kde-base/arts )"
-
-[ -n "$DEBUG" ] && myconf="$myconf --with-debug-symbols"
-[ "$ARCH" == "x86" ] && myconf="$myconf --with-ix86-asm"
-use ipv6 && myconf="$myconf --with-ipv6-support" \
- || myconf="$myconf --without-ipv6-support"
-# arts support without kde support isn't liked by the configure script
-# possibly it could be made to work but i didn't want to spend time on it
-use kde && myconf="$myconf --with-kde-support --with-arts-support" \
- || myconf="$myconf --without-kde-support --without-arts-support"
-use esd && myconf="$myconf --with-esd-support" \
- || myconf="$myconf --without-esd-support"
-#use oss && myconf="$myconf --with-audiofile--support" \
-# || myconf="$myconf --without-audiofile-support"
-use ssl && myconf="$myconf --with-ssl-support" \
- || myconf="$myconf --without-ssl-support"
-
-# use aa even when kde support is disabled; enable local 8bit character set conversion
-myconf="$myconf --with-aa-fonts" #--with-local-8bit"
-
-src_compile() {
-
- use kde && kde_src_compile myconf
-
- # always install into /usr regardless of kde support
- # kvirc doesn't have a kde-like installed file structure anyway
- myconf="$myconf --prefix=/usr -v"
-
- # make sure we disable kde support as the configure script can auto-enable
- # it when it isn't wanted
- use kde || export KDEDIR=""
-
- need-automake 1.5
- need-autoconf 2.5
- ./autogen.sh
- kde_src_compile configure make
-
-}
-
-src_install () {
-
- make install DESTDIR=${D} || die
- make docs DESTDIR=${D} || die
-
- dodoc ChangeLog INSTALL README TODO
-
-}
-
-