diff options
author | 2010-05-08 18:57:52 +0000 | |
---|---|---|
committer | 2010-05-08 18:57:52 +0000 | |
commit | 7640109eb4f11cbc7b87b33c4c41874e040f6429 (patch) | |
tree | e92cbfc791187be7faea31e3a3ca0df46e997e10 /net-irc/bip | |
parent | Removed old ebuild (diff) | |
download | gentoo-2-7640109eb4f11cbc7b87b33c4c41874e040f6429.tar.gz gentoo-2-7640109eb4f11cbc7b87b33c4c41874e040f6429.tar.bz2 gentoo-2-7640109eb4f11cbc7b87b33c4c41874e040f6429.zip |
Remove old version and cleanup files/
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'net-irc/bip')
-rw-r--r-- | net-irc/bip/ChangeLog | 6 | ||||
-rw-r--r-- | net-irc/bip/bip-0.8.2.ebuild | 64 | ||||
-rw-r--r-- | net-irc/bip/files/bip-configure-oidentd.patch | 19 |
3 files changed, 5 insertions, 84 deletions
diff --git a/net-irc/bip/ChangeLog b/net-irc/bip/ChangeLog index 8be6c0075ad1..f75cd0233dd9 100644 --- a/net-irc/bip/ChangeLog +++ b/net-irc/bip/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-irc/bip # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/bip/ChangeLog,v 1.9 2010/01/05 10:30:42 a3li Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/bip/ChangeLog,v 1.10 2010/05/08 18:57:51 a3li Exp $ + + 08 May 2010; Alex Legler <a3li@gentoo.org> -bip-0.8.2.ebuild, + -files/bip-configure-oidentd.patch: + Remove old version and cleanup files/ *bip-0.8.4 (05 Jan 2010) diff --git a/net-irc/bip/bip-0.8.2.ebuild b/net-irc/bip/bip-0.8.2.ebuild deleted file mode 100644 index 9d002fca9030..000000000000 --- a/net-irc/bip/bip-0.8.2.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/bip/bip-0.8.2.ebuild,v 1.1 2009/08/27 18:44:57 a3li Exp $ - -EAPI="2" - -inherit autotools - -DESCRIPTION="Multiuser IRC proxy with ssl support" -HOMEPAGE="http://bip.t1r.net/" -SRC_URI="http://bip.t1r.net/downloads/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="debug ssl vim-syntax oidentd" - -DEPEND="ssl? ( dev-libs/openssl )" -RDEPEND="${DEPEND} - vim-syntax? ( || ( app-editors/vim - app-editors/gvim ) ) - oidentd? ( >=net-misc/oidentd-2.0 )" - -src_prepare() { - # configure broken: --disable-oidentd enables it, too - epatch "${FILESDIR}/${PN}-configure-oidentd.patch" - - eautoreconf -} - -src_configure() { - econf \ - $(use_enable ssl openssl)\ - $(use_enable debug)\ - $(use_enable oidentd) -} - -src_compile() { - # Parallel make fails. - # {C,CXX,LD}FLAGS aren't respected, bug 241030. - emake CFLAGS="${CFLAGS}" CPPFLAGS="${CXXFLAGS}" \ - LDFLAGS="${LDFLAGS}" -j1 || die "emake failed" -} - -src_install() { - dobin src/bip src/bipmkpw || die "dobin failed" - - dodoc AUTHORS ChangeLog README NEWS TODO || die "dodoc failed" - newdoc samples/bip.conf bip.conf.sample || die "newdoc failed" - doman bip.1 bip.conf.5 bipmkpw.1 || die "doman failed" - - if use vim-syntax; then - insinto /usr/share/vim/vimfiles/syntax - doins samples/bip.vim || die "doins failed" - insinto /usr/share/vim/vimfiles/ftdetect - doins "${FILESDIR}"/bip.vim || die "doins failed" - fi -} - -pkg_postinst() { - elog 'Default configuration file is "~/.bip/bip.conf"' - elog "You can find a sample configuration file in" - elog "/usr/share/doc/${PF}/bip.conf.sample" -} diff --git a/net-irc/bip/files/bip-configure-oidentd.patch b/net-irc/bip/files/bip-configure-oidentd.patch deleted file mode 100644 index 787129981658..000000000000 --- a/net-irc/bip/files/bip-configure-oidentd.patch +++ /dev/null @@ -1,19 +0,0 @@ ---- a/configure.in 2009-07-17 11:43:29.000000000 +0200 -+++ b/configure.in 2009-07-31 20:30:58.450934716 +0200 -@@ -36,11 +36,14 @@ - - AC_ARG_ENABLE(oidentd, - [ --enable-oidentd Enable oidentd support (bip overwrites ~/.oidentd.conf with this on!)], -- enable_oidentd=yes -- AC_DEFINE([HAVE_OIDENTD], [], [Enable oidentd.conf management support]), -+ , - [enable_oidentd=no] - ) - -+if test "x$enable_oidentd" = "xyes"; then -+ AC_DEFINE([HAVE_OIDENTD], [], [Enable oidentd.conf management support]) -+fi -+ - AM_CONDITIONAL(OIDENTD, test x$enable_identd = xyes) - - AC_ARG_ENABLE(openssl, |