diff options
author | Raúl Porcel <armin76@gentoo.org> | 2007-02-20 15:40:37 +0000 |
---|---|---|
committer | Raúl Porcel <armin76@gentoo.org> | 2007-02-20 15:40:37 +0000 |
commit | a783e62faa1a13c255a176d495ce15f62f7a45d5 (patch) | |
tree | 03aca98546619e8d591a3060188a255c0f96a471 /net-irc/anope | |
parent | mark ~amd64; bug 165110 (diff) | |
download | gentoo-2-a783e62faa1a13c255a176d495ce15f62f7a45d5.tar.gz gentoo-2-a783e62faa1a13c255a176d495ce15f62f7a45d5.tar.bz2 gentoo-2-a783e62faa1a13c255a176d495ce15f62f7a45d5.zip |
Version bump, drop old
(Portage version: 2.1.2-r10)
Diffstat (limited to 'net-irc/anope')
-rw-r--r-- | net-irc/anope/ChangeLog | 10 | ||||
-rw-r--r-- | net-irc/anope/anope-1.7.15.ebuild | 131 | ||||
-rw-r--r-- | net-irc/anope/anope-1.7.18.ebuild (renamed from net-irc/anope/anope-1.7.17.ebuild) | 4 | ||||
-rw-r--r-- | net-irc/anope/files/digest-anope-1.7.15 | 3 | ||||
-rw-r--r-- | net-irc/anope/files/digest-anope-1.7.17 | 3 | ||||
-rw-r--r-- | net-irc/anope/files/digest-anope-1.7.18 | 3 |
6 files changed, 13 insertions, 141 deletions
diff --git a/net-irc/anope/ChangeLog b/net-irc/anope/ChangeLog index 2b76c167d873..3515fea040c0 100644 --- a/net-irc/anope/ChangeLog +++ b/net-irc/anope/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-irc/anope -# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/anope/ChangeLog,v 1.3 2006/11/23 17:26:15 vivo Exp $ +# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/anope/ChangeLog,v 1.4 2007/02/20 15:40:37 armin76 Exp $ + +*anope-1.7.18 (20 Feb 2007) + + 20 Feb 2007; Raúl Porcel <armin76@gentoo.org> -anope-1.7.15.ebuild, + -anope-1.7.17.ebuild, +anope-1.7.18.ebuild: + Version bump, drop old 23 Nov 2006; Francesco Riosa <vivo@gentoo.org> anope-1.7.15.ebuild, anope-1.7.17.ebuild: diff --git a/net-irc/anope/anope-1.7.15.ebuild b/net-irc/anope/anope-1.7.15.ebuild deleted file mode 100644 index e21302205111..000000000000 --- a/net-irc/anope/anope-1.7.15.ebuild +++ /dev/null @@ -1,131 +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/anope/anope-1.7.15.ebuild,v 1.2 2006/11/23 17:26:15 vivo Exp $ - -inherit eutils - -DESCRIPTION="Anope IRC Services" -HOMEPAGE="http://www.anope.org" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~x86" -IUSE="mysql" - -DEPEND="mysql? ( virtual/mysql )" - -INSTALL_DIR="/opt/anope" - -pkg_setup() { - enewgroup anope - enewuser anope -1 -1 ${INSTALL_DIR} anope -} - -src_compile() { - local myconf - if ! use mysql; then - myconf="${myconf} --without-mysql" - fi - #Threads cant be disabled currently - #if ! use threads; then - # myconf="${myconf} --without-threads" - #fi - - epatch ${FILESDIR}/pid-patch.diff - - econf \ - ${myconf} \ - --bindir ${INSTALL_DIR} \ - --with-bindir=${INSTALL_DIR} \ - --with-datadir=${INSTALL_DIR}/data \ - --with-modules=${INSTALL_DIR}/modules \ - --with-encryption \ - --with-rungroup=anope \ - --with-permissions=077 \ - || die "Configuration failed." - - sed -i -e "/^build:/s:$: language:g" "${S}"/Makefile || die "sed failed" - - emake || die "Make failed." -} - -src_install() { - dodir ${INSTALL_DIR} - dodir ${INSTALL_DIR}/data - dodir ${INSTALL_DIR}/data/logs - dodir ${INSTALL_DIR}/data/languages - dodir ${INSTALL_DIR}/data/modules - dodir ${INSTALL_DIR}/data/modules/runtime - dodir ${INSTALL_DIR}/modules - - dodir /var/run/anope - fowners anope:anope /var/run/anope - keepdir /var/run/anope - - fowners anope:anope ${INSTALL_DIR} - fowners anope:anope ${INSTALL_DIR}/data - fowners anope:anope ${INSTALL_DIR}/data/logs - fowners anope:anope ${INSTALL_DIR}/data/languages - fowners anope:anope ${INSTALL_DIR}/data/modules - fowners anope:anope ${INSTALL_DIR}/data/modules/runtime - fowners anope:anope ${INSTALL_DIR}/modules - - exeinto ${INSTALL_DIR} - doexe src/services - insinto ${INSTALL_DIR}/data - newins data/example.conf services.conf - - exeinto /etc/init.d - newexe ${FILESDIR}/anope.initd anope - insinto /etc/conf.d - newins ${FILESDIR}/anope.confd anope - - insinto ${INSTALL_DIR}/modules - doins src/modules/*.so - - keepdir ${INSTALL_DIR}/data/logs - - insinto ${INSTALL_DIR}/data/languages - doins lang/cat - doins lang/de - doins lang/en_us - doins lang/es - doins lang/fr - doins lang/gr - doins lang/hun - doins lang/it - doins lang/nl - doins lang/pl - doins lang/pt - doins lang/ru - doins lang/tr - - keepdir ${INSTALL_DIR}/data/modules/runtime - - insinto ${INSTALL_DIR}/data/modules - doins src/protocol/*.so - doins src/core/*.so - - fowners anope:anope ${INSTALL_DIR}/services - fowners anope:anope ${INSTALL_DIR}/data/services.conf - fowners anope:anope ${INSTALL_DIR}/data/languages/cat - fowners anope:anope ${INSTALL_DIR}/data/languages/de - fowners anope:anope ${INSTALL_DIR}/data/languages/en_us - fowners anope:anope ${INSTALL_DIR}/data/languages/fr - fowners anope:anope ${INSTALL_DIR}/data/languages/gr - fowners anope:anope ${INSTALL_DIR}/data/languages/hun - fowners anope:anope ${INSTALL_DIR}/data/languages/it - fowners anope:anope ${INSTALL_DIR}/data/languages/nl - fowners anope:anope ${INSTALL_DIR}/data/languages/pl - fowners anope:anope ${INSTALL_DIR}/data/languages/pt - fowners anope:anope ${INSTALL_DIR}/data/languages/ru - fowners anope:anope ${INSTALL_DIR}/data/languages/tr -} - -pkg_postinst() { - echo - ewarn "Anope won't run out of the box, you still have to configure it to match your IRCDs configuration." - ewarn "Edit ${INSTALL_DIR}/data/services.conf to configure Anope." - echo -} diff --git a/net-irc/anope/anope-1.7.17.ebuild b/net-irc/anope/anope-1.7.18.ebuild index fcddd2473d61..a4e688c0672d 100644 --- a/net-irc/anope/anope-1.7.17.ebuild +++ b/net-irc/anope/anope-1.7.18.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/anope/anope-1.7.17.ebuild,v 1.2 2006/11/23 17:26:15 vivo Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/anope/anope-1.7.18.ebuild,v 1.1 2007/02/20 15:40:37 armin76 Exp $ inherit eutils diff --git a/net-irc/anope/files/digest-anope-1.7.15 b/net-irc/anope/files/digest-anope-1.7.15 deleted file mode 100644 index e514bac90a36..000000000000 --- a/net-irc/anope/files/digest-anope-1.7.15 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 a41d5420a70b443201d42e4db9d0d07e anope-1.7.15.tar.gz 1463100 -RMD160 1a1e87abc272b0b891ab2bfc84d78e39d22b3c78 anope-1.7.15.tar.gz 1463100 -SHA256 356ef9aaa719639c11a9395bc6e2379f26a1b05be55a2f31eb9df287526782b5 anope-1.7.15.tar.gz 1463100 diff --git a/net-irc/anope/files/digest-anope-1.7.17 b/net-irc/anope/files/digest-anope-1.7.17 deleted file mode 100644 index 30df917382d1..000000000000 --- a/net-irc/anope/files/digest-anope-1.7.17 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 ff8f546fe4e3da7fcb3f920f2c337e36 anope-1.7.17.tar.gz 1471230 -RMD160 50edae6c22311aada6e2fdfd56a1cd7781143c5a anope-1.7.17.tar.gz 1471230 -SHA256 2f1712103fcf0343ee4cc811f258df6393fab73f2d6c2946f3dfbfaf48f1a4e4 anope-1.7.17.tar.gz 1471230 diff --git a/net-irc/anope/files/digest-anope-1.7.18 b/net-irc/anope/files/digest-anope-1.7.18 new file mode 100644 index 000000000000..adb2940e1be0 --- /dev/null +++ b/net-irc/anope/files/digest-anope-1.7.18 @@ -0,0 +1,3 @@ +MD5 87b9e7a6a6129a9e9c8d07b135da4a4f anope-1.7.18.tar.gz 1486562 +RMD160 b334fad432e865a780170d9eeba2f455d248be30 anope-1.7.18.tar.gz 1486562 +SHA256 f47c21d1a88bc45d225b225f2877f9ff63a56d8897d7bdd848800f67ed50afc8 anope-1.7.18.tar.gz 1486562 |