diff options
author | Bjarke Istrup Pedersen <gurligebis@gentoo.org> | 2009-01-03 15:43:23 +0000 |
---|---|---|
committer | Bjarke Istrup Pedersen <gurligebis@gentoo.org> | 2009-01-03 15:43:23 +0000 |
commit | 1204801921b8356ae5108a4e9dd6890f6dc2da69 (patch) | |
tree | 324321e4998771883d790a6345ae441c731d8e7f /net-irc | |
parent | QA: Respect CC (bug 243756) (diff) | |
download | gentoo-2-1204801921b8356ae5108a4e9dd6890f6dc2da69.tar.gz gentoo-2-1204801921b8356ae5108a4e9dd6890f6dc2da69.tar.bz2 gentoo-2-1204801921b8356ae5108a4e9dd6890f6dc2da69.zip |
Adding scripting support
(Portage version: 2.2_rc20/cvs/Linux 2.6.28 i686)
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/psybnc/ChangeLog | 11 | ||||
-rw-r--r-- | net-irc/psybnc/files/psybnc-2.3.2.9-scripting.patch | 13 | ||||
-rw-r--r-- | net-irc/psybnc/metadata.xml | 1 | ||||
-rw-r--r-- | net-irc/psybnc/psybnc-2.3.2.9-r1.ebuild (renamed from net-irc/psybnc/psybnc-2.3.2.9.ebuild) | 7 |
4 files changed, 28 insertions, 4 deletions
diff --git a/net-irc/psybnc/ChangeLog b/net-irc/psybnc/ChangeLog index 1ac30610e274..c93240f14159 100644 --- a/net-irc/psybnc/ChangeLog +++ b/net-irc/psybnc/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for net-irc/psybnc -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/psybnc/ChangeLog,v 1.8 2008/12/14 18:23:14 gurligebis Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/psybnc/ChangeLog,v 1.9 2009/01/03 15:43:22 gurligebis Exp $ + +*psybnc-2.3.2.9-r1 (03 Jan 2009) + + 03 Jan 2009; Bjarke Istrup Pedersen <gurligebis@gentoo.org> + +files/psybnc-2.3.2.9-scripting.patch, metadata.xml, + -psybnc-2.3.2.9.ebuild, +psybnc-2.3.2.9-r1.ebuild: + Adding support for scripting *psybnc-2.3.2.9 (14 Dec 2008) diff --git a/net-irc/psybnc/files/psybnc-2.3.2.9-scripting.patch b/net-irc/psybnc/files/psybnc-2.3.2.9-scripting.patch new file mode 100644 index 000000000000..08dce4fa715b --- /dev/null +++ b/net-irc/psybnc/files/psybnc-2.3.2.9-scripting.patch @@ -0,0 +1,13 @@ +--- config.h.orig 2009-01-03 17:30:41.000000000 +0000 ++++ config.h 2009-01-03 17:31:27.000000000 +0000 +@@ -26,6 +26,10 @@ + + #define TRAFFICLOG + ++/* Allow scripting */ ++ ++#define SCRIPTING ++ + /* Allow linkage of bouncers */ + + #define LINKAGE diff --git a/net-irc/psybnc/metadata.xml b/net-irc/psybnc/metadata.xml index 20b6b26f444f..b76de8209018 100644 --- a/net-irc/psybnc/metadata.xml +++ b/net-irc/psybnc/metadata.xml @@ -8,6 +8,7 @@ </maintainer> <use> <flag name='oidentd'>Adds support for oidentd</flag> + <flag name='scripting'>Adds scripting support</flag> </use> <longdescription>psyBNC is a multi-user and multi-server gateway to IRC networks</longdescription> </pkgmetadata> diff --git a/net-irc/psybnc/psybnc-2.3.2.9.ebuild b/net-irc/psybnc/psybnc-2.3.2.9-r1.ebuild index 0b8e164885d5..e4f055a88903 100644 --- a/net-irc/psybnc/psybnc-2.3.2.9.ebuild +++ b/net-irc/psybnc/psybnc-2.3.2.9-r1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/psybnc/psybnc-2.3.2.9.ebuild,v 1.1 2008/12/14 18:23:14 gurligebis Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/psybnc/psybnc-2.3.2.9-r1.ebuild,v 1.1 2009/01/03 15:43:22 gurligebis Exp $ inherit eutils versionator toolchain-funcs flag-o-matic MY_PV="$(replace_version_separator 3 -)" @@ -34,6 +34,9 @@ src_unpack() { # add oidentd use oidentd && epatch "${FILESDIR}/${P}-oidentd.patch" + # add scripting support + use scripting && epatch "${FILESDIR}/${P}-scripting.patch" + # Useless files rm -f */INFO |