diff options
author | Markus Ullmann <jokey@gentoo.org> | 2007-09-06 12:13:35 +0000 |
---|---|---|
committer | Markus Ullmann <jokey@gentoo.org> | 2007-09-06 12:13:35 +0000 |
commit | 98d81911cce70c125d9987b23c97cadcb792532f (patch) | |
tree | eabd92eb6b0c094a0f3f2e38b4913a19fb46b90c /net-irc/kvirc/kvirc-3.2.0.ebuild | |
parent | mask dev-python/logging for removal (diff) | |
download | gentoo-2-98d81911cce70c125d9987b23c97cadcb792532f.tar.gz gentoo-2-98d81911cce70c125d9987b23c97cadcb792532f.tar.bz2 gentoo-2-98d81911cce70c125d9987b23c97cadcb792532f.zip |
Add doc fix wrt bug #126992 thanks to Togge, also cleanup old crap
(Portage version: 2.1.3.7)
Diffstat (limited to 'net-irc/kvirc/kvirc-3.2.0.ebuild')
-rw-r--r-- | net-irc/kvirc/kvirc-3.2.0.ebuild | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/net-irc/kvirc/kvirc-3.2.0.ebuild b/net-irc/kvirc/kvirc-3.2.0.ebuild deleted file mode 100644 index 2e6b8ae6fdfa..000000000000 --- a/net-irc/kvirc/kvirc-3.2.0.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/kvirc/kvirc-3.2.0.ebuild,v 1.12 2006/12/23 22:13:00 jokey 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 - mirror://gentoo/${P}-linking-fix.patch.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" - -src_unpack() { - unpack ${A} - cd "${S}" - - epatch "${FILESDIR}"/kvirc-3.0.1-kdedir-fix.patch - epatch "${WORKDIR}"/${P}-linking-fix.patch - epatch "${FILESDIR}"/${P}-gcc4.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 "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - emake DESTDIR="${D}" docs || die "emake docs failed" - dodoc ChangeLog INSTALL README TODO -} |