From 8ffa2bcc1289e4a743b06b95e7a3f7d7d87bd1d9 Mon Sep 17 00:00:00 2001 From: Alex Legler Date: Thu, 27 Aug 2009 18:44:57 +0000 Subject: Version bump. (Portage version: 2.2_rc33/cvs/Linux x86_64) --- net-irc/bip/ChangeLog | 9 ++- net-irc/bip/bip-0.8.0.ebuild | 59 -------------------- net-irc/bip/bip-0.8.1.ebuild | 4 +- net-irc/bip/bip-0.8.2.ebuild | 64 ++++++++++++++++++++++ .../bip/files/bip-0.8.1-configure-oidentd.patch | 19 ------- net-irc/bip/files/bip-configure-oidentd.patch | 19 +++++++ 6 files changed, 93 insertions(+), 81 deletions(-) delete mode 100644 net-irc/bip/bip-0.8.0.ebuild create mode 100644 net-irc/bip/bip-0.8.2.ebuild delete mode 100644 net-irc/bip/files/bip-0.8.1-configure-oidentd.patch create mode 100644 net-irc/bip/files/bip-configure-oidentd.patch (limited to 'net-irc/bip') diff --git a/net-irc/bip/ChangeLog b/net-irc/bip/ChangeLog index 40bd7dd8b6cf..7ee7507d949f 100644 --- a/net-irc/bip/ChangeLog +++ b/net-irc/bip/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for net-irc/bip # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/bip/ChangeLog,v 1.7 2009/07/31 18:51:29 a3li Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/bip/ChangeLog,v 1.8 2009/08/27 18:44:57 a3li Exp $ + +*bip-0.8.2 (27 Aug 2009) + + 27 Aug 2009; Alex Legler -bip-0.8.0.ebuild, + bip-0.8.1.ebuild, -files/bip-0.8.1-configure-oidentd.patch, + +bip-0.8.2.ebuild, +files/bip-configure-oidentd.patch: + Version bump, renaming patch, removing old version. *bip-0.8.1 (31 Jul 2009) diff --git a/net-irc/bip/bip-0.8.0.ebuild b/net-irc/bip/bip-0.8.0.ebuild deleted file mode 100644 index 86c355a7bdb8..000000000000 --- a/net-irc/bip/bip-0.8.0.ebuild +++ /dev/null @@ -1,59 +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.0.ebuild,v 1.1 2009/03/23 15:58:15 a3li Exp $ - -EAPI="2" - -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_configure() { - # configure broken: --disable-oidentd enables it, too - local my_conf - use oidentd && my_conf="--enable-oidentd" - - econf \ - $(use_enable ssl openssl)\ - $(use_enable debug)\ - ${my_conf} -} - -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/bip-0.8.1.ebuild b/net-irc/bip/bip-0.8.1.ebuild index 4af1a2ba8619..ea200bff9b55 100644 --- a/net-irc/bip/bip-0.8.1.ebuild +++ b/net-irc/bip/bip-0.8.1.ebuild @@ -1,6 +1,6 @@ # 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.1.ebuild,v 1.1 2009/07/31 18:51:29 a3li Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/bip/bip-0.8.1.ebuild,v 1.2 2009/08/27 18:44:57 a3li Exp $ EAPI="2" @@ -23,7 +23,7 @@ RDEPEND="${DEPEND} src_prepare() { # configure broken: --disable-oidentd enables it, too - epatch "${FILESDIR}/${P}-configure-oidentd.patch" + epatch "${FILESDIR}/${PN}-configure-oidentd.patch" eautoreconf } diff --git a/net-irc/bip/bip-0.8.2.ebuild b/net-irc/bip/bip-0.8.2.ebuild new file mode 100644 index 000000000000..9d002fca9030 --- /dev/null +++ b/net-irc/bip/bip-0.8.2.ebuild @@ -0,0 +1,64 @@ +# 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-0.8.1-configure-oidentd.patch b/net-irc/bip/files/bip-0.8.1-configure-oidentd.patch deleted file mode 100644 index 787129981658..000000000000 --- a/net-irc/bip/files/bip-0.8.1-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, diff --git a/net-irc/bip/files/bip-configure-oidentd.patch b/net-irc/bip/files/bip-configure-oidentd.patch new file mode 100644 index 000000000000..787129981658 --- /dev/null +++ b/net-irc/bip/files/bip-configure-oidentd.patch @@ -0,0 +1,19 @@ +--- 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, -- cgit v1.2.3-65-gdbad