summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Wegener <swegener@gentoo.org>2005-06-07 15:20:32 +0000
committerSven Wegener <swegener@gentoo.org>2005-06-07 15:20:32 +0000
commit09f8cfffadd48246be89de06fad777806f61b479 (patch)
tree765966bd9d57f7aa7cf46a4ca2c0d6b69c59b6e8 /net-irc/kvirc
parentVersion bump. Marked 0.17 stable on x86. (diff)
downloadgentoo-2-09f8cfffadd48246be89de06fad777806f61b479.tar.gz
gentoo-2-09f8cfffadd48246be89de06fad777806f61b479.tar.bz2
gentoo-2-09f8cfffadd48246be89de06fad777806f61b479.zip
Removed old ebuild.
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'net-irc/kvirc')
-rw-r--r--net-irc/kvirc/ChangeLog5
-rw-r--r--net-irc/kvirc/files/digest-kvirc-3.0.1-r11
-rw-r--r--net-irc/kvirc/kvirc-3.0.1-r1.ebuild69
3 files changed, 4 insertions, 71 deletions
diff --git a/net-irc/kvirc/ChangeLog b/net-irc/kvirc/ChangeLog
index d559c1d8a912..3c42eda39136 100644
--- a/net-irc/kvirc/ChangeLog
+++ b/net-irc/kvirc/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-irc/kvirc
# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/kvirc/ChangeLog,v 1.26 2005/05/22 18:11:57 dertobi123 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/kvirc/ChangeLog,v 1.27 2005/06/07 15:20:32 swegener Exp $
+
+ 07 Jun 2005; Sven Wegener <swegener@gentoo.org> -kvirc-3.0.1-r1.ebuild:
+ Removed old ebuild.
22 May 2005; Tobias Scherbaum <dertobi123@gentoo.org> kvirc-3.2.0.ebuild:
Stable on ppc.
diff --git a/net-irc/kvirc/files/digest-kvirc-3.0.1-r1 b/net-irc/kvirc/files/digest-kvirc-3.0.1-r1
deleted file mode 100644
index 9f4337ea1656..000000000000
--- a/net-irc/kvirc/files/digest-kvirc-3.0.1-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 22b402d072a84eda11e762eb413e29c6 kvirc-3.0.1.tar.bz2 2679737
diff --git a/net-irc/kvirc/kvirc-3.0.1-r1.ebuild b/net-irc/kvirc/kvirc-3.0.1-r1.ebuild
deleted file mode 100644
index 432846849f09..000000000000
--- a/net-irc/kvirc/kvirc-3.0.1-r1.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/kvirc/kvirc-3.0.1-r1.ebuild,v 1.5 2005/04/24 13:14:40 hansmi Exp $
-
-inherit eutils kde-functions
-
-DESCRIPTION="An advanced IRC Client"
-HOMEPAGE="http://www.kvirc.net/"
-SRC_URI="ftp://ftp.kvirc.net/pub/kvirc/${PV}/source/${P}.tar.bz2
- ftp://ftp.kvirc.de/pub/kvirc/${PV}/source/${P}.tar.bz2
- ftp://kvirc.firenze.linux.it/pub/kvirc/${PV}/source/${P}.tar.bz2"
-
-LICENSE="kvirc"
-SLOT="3"
-KEYWORDS="x86 ~amd64 ppc ~sparc"
-IUSE="debug esd ipv6 kde oss ssl"
-
-RDEPEND="esd? ( media-sound/esound )
- ssl? ( dev-libs/openssl )
- oss? ( media-libs/audiofile )
- >=x11-libs/qt-3
- kde? ( >=kde-base/kdelibs-3 )
- sys-devel/gettext"
-
-DEPEND="${RDEPEND}
- sys-apps/gawk
- sys-apps/grep
- sys-devel/libtool
- sys-apps/sed"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
-
- epatch ${FILESDIR}/${P}-kdedir-fix.patch
-}
-
-src_compile() {
- set-qtdir 3
- set-kdedir 3
-
- # use aa even when kde support is disabled; remove the splash screen
- # to speed up the startup.
- local myconf="--with-aa-fonts --without-splash-screen
- --with-big-channels --with-pizza"
-
- # For myconf, we can't do it the easy way (use_with) because the configure
- # script will assume we're telling it not to include support.
- myconf="${myconf}
- `use_with debug debug-symbols`"
- use kde || myconf="${myconf} --without-kde-support --without-arts-support"
- use ipv6 || myconf="${myconf} --without-ipv6-support"
- use esd || myconf="${myconf} --without-esd-support"
- use ssl || myconf="${myconf} --without-ssl-support"
-
- [ "$ARCH" == "x86" ] && myconf="$myconf --with-ix86-asm"
-
- need-autoconf 2.5
- need-automake 1.5
-
- econf ${myconf} || die "failed to configure"
- emake -j1 || die "failed to make"
-}
-
-src_install() {
- emake install DESTDIR=${D} || die
- emake docs DESTDIR=${D} || die
- dodoc ChangeLog INSTALL README TODO
-}