diff options
author | Markus Ullmann <jokey@gentoo.org> | 2007-07-24 19:58:43 +0000 |
---|---|---|
committer | Markus Ullmann <jokey@gentoo.org> | 2007-07-24 19:58:43 +0000 |
commit | 67e895005383b2fbf481e4825a7e877d5f095039 (patch) | |
tree | 7f25692c14a6c2645564e87b84ce2cc549abb558 /net-irc/kvirc | |
parent | old version cleanout (diff) | |
download | gentoo-2-67e895005383b2fbf481e4825a7e877d5f095039.tar.gz gentoo-2-67e895005383b2fbf481e4825a7e877d5f095039.tar.bz2 gentoo-2-67e895005383b2fbf481e4825a7e877d5f095039.zip |
Kill old stuff
(Portage version: 2.1.3_rc8)
Diffstat (limited to 'net-irc/kvirc')
-rw-r--r-- | net-irc/kvirc/ChangeLog | 6 | ||||
-rw-r--r-- | net-irc/kvirc/kvirc-3.2.6_pre20070628.ebuild | 61 |
2 files changed, 5 insertions, 62 deletions
diff --git a/net-irc/kvirc/ChangeLog b/net-irc/kvirc/ChangeLog index 45e66871e14c..bbb5c210aff2 100644 --- a/net-irc/kvirc/ChangeLog +++ b/net-irc/kvirc/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-irc/kvirc # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/kvirc/ChangeLog,v 1.51 2007/07/24 19:56:33 jokey Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/kvirc/ChangeLog,v 1.52 2007/07/24 19:58:43 jokey Exp $ + + 24 Jul 2007; Markus Ullmann <jokey@gentoo.org> + -kvirc-3.2.6_pre20070628.ebuild: + Kill old stuff *kvirc-3.2.6_pre20070714 (24 Jul 2007) diff --git a/net-irc/kvirc/kvirc-3.2.6_pre20070628.ebuild b/net-irc/kvirc/kvirc-3.2.6_pre20070628.ebuild deleted file mode 100644 index c33dce8e7a27..000000000000 --- a/net-irc/kvirc/kvirc-3.2.6_pre20070628.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/kvirc/kvirc-3.2.6_pre20070628.ebuild,v 1.3 2007/07/02 16:54:20 philantrop Exp $ - -inherit autotools eutils kde-functions - -DESCRIPTION="An advanced IRC Client" -HOMEPAGE="http://www.kvirc.net/" -SRC_URI="mirror://gentoo/${P}.tar.bz2" - -LICENSE="kvirc" -SLOT="3" -KEYWORDS="~amd64 ~mips ~ppc ~sparc ~x86" -IUSE="debug esd ipv6 kde oss ssl" - -RDEPEND="esd? ( media-sound/esound ) - ssl? ( dev-libs/openssl ) - oss? ( media-libs/audiofile ) - kde? ( >=kde-base/kdelibs-3 ) - =x11-libs/qt-3*" - -DEPEND="${RDEPEND} - sys-devel/gettext" - -S=${WORKDIR}/${PN} - -src_unpack() { - unpack ${A} - cd "${S}" - ./autogen.sh - epatch "${FILESDIR}"/${PN}-svn-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" - - econf ${myconf} || die "econf failed" - emake -j1 || die "econf failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - emake DESTDIR="${D}" docs || die "emake docs failed" - dodoc ChangeLog INSTALL README TODO -} |