summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAli Polatel <hawking@gentoo.org>2008-08-31 10:05:17 +0000
committerAli Polatel <hawking@gentoo.org>2008-08-31 10:05:17 +0000
commitaeddeb0baa039f3d95fc1604967bb3f29cb8cc42 (patch)
tree04c818cc21355b1e0a84b8c17f59a0a4422adb34 /net-irc
parentAdd missing file 10-vmware-tools. (diff)
downloadgentoo-2-aeddeb0baa039f3d95fc1604967bb3f29cb8cc42.tar.gz
gentoo-2-aeddeb0baa039f3d95fc1604967bb3f29cb8cc42.tar.bz2
gentoo-2-aeddeb0baa039f3d95fc1604967bb3f29cb8cc42.zip
Version bump. Keyword ~amd64. Drop old.
(Portage version: -svn/cvs/Linux 2.6.26-gentoo x86_64)
Diffstat (limited to 'net-irc')
-rw-r--r--net-irc/bip/ChangeLog10
-rw-r--r--net-irc/bip/bip-0.7.4.ebuild (renamed from net-irc/bip/bip-0.6.1.ebuild)25
2 files changed, 14 insertions, 21 deletions
diff --git a/net-irc/bip/ChangeLog b/net-irc/bip/ChangeLog
index b765b61efb1e..5b79a2fcdd8c 100644
--- a/net-irc/bip/ChangeLog
+++ b/net-irc/bip/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for net-irc/bip
-# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/bip/ChangeLog,v 1.1 2007/11/20 09:15:58 hawking Exp $
+# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-irc/bip/ChangeLog,v 1.2 2008/08/31 10:05:17 hawking Exp $
+
+*bip-0.7.4 (31 Aug 2008)
+
+ 31 Aug 2008; Ali Polatel <hawking@gentoo.org> -bip-0.6.1.ebuild,
+ +bip-0.7.4.ebuild:
+ Version bump. Keyword ~amd64. Drop old.
*bip-0.6.1 (20 Nov 2007)
diff --git a/net-irc/bip/bip-0.6.1.ebuild b/net-irc/bip/bip-0.7.4.ebuild
index 20f702c89c9a..54e85f3cd0d2 100644
--- a/net-irc/bip/bip-0.6.1.ebuild
+++ b/net-irc/bip/bip-0.7.4.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/bip/bip-0.6.1.ebuild,v 1.1 2007/11/20 09:15:58 hawking Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/bip/bip-0.7.4.ebuild,v 1.1 2008/08/31 10:05:17 hawking Exp $
DESCRIPTION="Multiuser IRC proxy with ssl support"
HOMEPAGE="http://bip.t1r.net/"
@@ -8,7 +8,7 @@ SRC_URI="http://bip.t1r.net/downloads/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~x86"
+KEYWORDS="~amd64 ~x86"
IUSE="ssl vim-syntax"
DEPEND="ssl? ( dev-libs/openssl )"
@@ -16,23 +16,10 @@ RDEPEND="${DEPEND}
vim-syntax? ( || ( app-editors/vim
app-editors/gvim ) )"
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- # Fix bip.vim
- if use vim-syntax; then
- sed -i \
- -e 's/^\(no_client_away_msg\)/\t\\ \1/' \
- -e 's/always_backlog/backlog_always/' \
- -e 's/bl_msg_only/backlog_msg_only/' \
- samples/bip.vim || die "sed failed"
- fi
-}
-
src_compile() {
econf $(use_enable ssl)
- emake CFLAGS="${CFLAGS}" || die "emake failed"
+ # Parallel make fails.
+ emake -j1 || die "emake failed"
}
src_install() {
@@ -53,5 +40,5 @@ src_install() {
pkg_postinst() {
elog 'Default configuration file is "~/.bip/bip.conf"'
elog "You can find a sample configuration file in"
- elog "/usr/share/doc/bip-0.6.1/bip.conf.sample.bz2"
+ elog "/usr/share/doc/${PF}/bip.conf.sample"
}