summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Wegener <swegener@gentoo.org>2008-02-27 21:07:05 +0000
committerSven Wegener <swegener@gentoo.org>2008-02-27 21:07:05 +0000
commit46ef738cb34a9965f82da9b03cc824e53f9e7f7b (patch)
tree7a1a4402d81ecf6fc1d3f4a8cbf2dc8162ab5e5f /net-irc/bitchx
parentAdd new opengl-video and opengl-xvmc USE flags. Support python bindings. Clea... (diff)
downloadgentoo-2-46ef738cb34a9965f82da9b03cc824e53f9e7f7b.tar.gz
gentoo-2-46ef738cb34a9965f82da9b03cc824e53f9e7f7b.tar.bz2
gentoo-2-46ef738cb34a9965f82da9b03cc824e53f9e7f7b.zip
Cleanup.
(Portage version: 2.1.4.4)
Diffstat (limited to 'net-irc/bitchx')
-rw-r--r--net-irc/bitchx/ChangeLog7
-rw-r--r--net-irc/bitchx/bitchx-1.1-r3.ebuild84
2 files changed, 5 insertions, 86 deletions
diff --git a/net-irc/bitchx/ChangeLog b/net-irc/bitchx/ChangeLog
index c836af22e3e9..f50ef7e184f4 100644
--- a/net-irc/bitchx/ChangeLog
+++ b/net-irc/bitchx/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-irc/bitchx
-# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/bitchx/ChangeLog,v 1.66 2007/11/11 12:21:42 armin76 Exp $
+# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-irc/bitchx/ChangeLog,v 1.67 2008/02/27 21:07:05 swegener Exp $
+
+ 27 Feb 2008; Sven Wegener <swegener@gentoo.org> -bitchx-1.1-r3.ebuild:
+ Cleanup.
11 Nov 2007; Raúl Porcel <armin76@gentoo.org> bitchx-1.1-r4.ebuild:
Add ~ia64 wrt #198460
diff --git a/net-irc/bitchx/bitchx-1.1-r3.ebuild b/net-irc/bitchx/bitchx-1.1-r3.ebuild
deleted file mode 100644
index 37317e3e4a0b..000000000000
--- a/net-irc/bitchx/bitchx-1.1-r3.ebuild
+++ /dev/null
@@ -1,84 +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/bitchx/bitchx-1.1-r3.ebuild,v 1.11 2006/11/19 02:10:35 compnerd Exp $
-
-inherit flag-o-matic eutils
-
-MY_P=ircii-pana-${PV}-final
-S=${WORKDIR}/BitchX
-DESCRIPTION="An IRC Client"
-HOMEPAGE="http://www.bitchx.org/"
-SRC_URI="http://www.bitchx.org/files/source/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ppc sh sparc x86"
-IUSE="cjk ipv6 ssl"
-
-DEPEND=">=sys-libs/ncurses-5.1
- ssl? ( >=dev-libs/openssl-0.9.6 )"
-
-src_unpack() {
- unpack ${MY_P}.tar.gz
- cd "${S}"
- use cjk && epatch "${FILESDIR}"/${PV}/${P}-cjk.patch
- epatch "${FILESDIR}"/${PV}/${P}-hebrew.patch
- epatch "${FILESDIR}"/${PV}/${P}-freenode.patch
- epatch "${FILESDIR}"/${PV}/${P}-gcc34.patch
- epatch "${FILESDIR}"/${PV}/${P}-gcc41.patch
- epatch "${FILESDIR}"/${PV}/${P}-headers.patch
- epatch "${FILESDIR}"/${PV}/${P}-build.patch
- epatch "${FILESDIR}"/fPIC.patch
- epatch "${FILESDIR}"/BitchX-64bit.patch
-
- sed -i \
- -e "s/#undef LATIN1/#define LATIN1 ON/;" \
- include/config.h
-}
-
-src_compile() {
- replace-flags -O[3-9] -O2
- append-flags -fno-strict-aliasing
-
- # Disable CDROM or else it will take over your CDROM drive
- local myconf="--disable-cdrom --disable-sound --without-gtk"
-
- # lamer@gentoo.org BROKEN, will not work with our socks
- # implementations, is looking for a SOCKSConnect function that our
- # dante packages don't have :-(
- # use socks5 \
- # && myconf="${myconf} --with-socks=5" \
- # || myconf="${myconf} --without-socks"
-
- econf \
- --with-plugins \
- $(use_with ssl) \
- $(use_enable ipv6) \
- ${myconf} || die
-
- emake || die "make failed"
- emake -C contrib vh1 || die "make vh1 failed"
-}
-
-src_install () {
- einstall || die
- dobin contrib/vh1 || die
- dosym BitchX-1.1-final /usr/bin/BitchX
-
- cd "${S}"
- dodoc bugs Changelog README* IPv6-support
-
- cd "${S}"/doc
- insinto /usr/include/X11/bitmaps
- doins BitchX.xpm || die
- dodoc README.* *.txt */*.txt tcl/*
- dohtml -r *
-
- cd "${S}"/dll
- docinto plugins
- dodoc nap/README.nap
- newdoc acro/README README.acro
- newdoc arcfour/README README.arcfour
- newdoc blowfish/README README.blowfish
- newdoc qbx/README README.qbx
-}