diff options
author | Raúl Porcel <armin76@gentoo.org> | 2007-05-15 16:08:16 +0000 |
---|---|---|
committer | Raúl Porcel <armin76@gentoo.org> | 2007-05-15 16:08:16 +0000 |
commit | b316acc6efc55d2952f5651c0ed809d50d11c469 (patch) | |
tree | e6932450a13f6911ebe20cc1f9d6d38fb00affad /net-irc | |
parent | stable amd64, bug 176286 (diff) | |
download | gentoo-2-b316acc6efc55d2952f5651c0ed809d50d11c469.tar.gz gentoo-2-b316acc6efc55d2952f5651c0ed809d50d11c469.tar.bz2 gentoo-2-b316acc6efc55d2952f5651c0ed809d50d11c469.zip |
alpha stable wrt #170668 and drop old
(Portage version: 2.1.2.7)
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/eggdrop/ChangeLog | 6 | ||||
-rw-r--r-- | net-irc/eggdrop/eggdrop-1.6.17-r2.ebuild | 112 | ||||
-rw-r--r-- | net-irc/eggdrop/eggdrop-1.6.17.ebuild | 99 | ||||
-rw-r--r-- | net-irc/eggdrop/eggdrop-1.6.18-r1.ebuild | 4 | ||||
-rw-r--r-- | net-irc/eggdrop/files/digest-eggdrop-1.6.17 | 6 | ||||
-rw-r--r-- | net-irc/eggdrop/files/digest-eggdrop-1.6.17-r2 | 6 |
6 files changed, 7 insertions, 226 deletions
diff --git a/net-irc/eggdrop/ChangeLog b/net-irc/eggdrop/ChangeLog index 491b46c3a166..b0b08b024447 100644 --- a/net-irc/eggdrop/ChangeLog +++ b/net-irc/eggdrop/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-irc/eggdrop # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/eggdrop/ChangeLog,v 1.60 2007/05/06 12:25:38 genone Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/eggdrop/ChangeLog,v 1.61 2007/05/15 16:08:16 armin76 Exp $ + + 15 May 2007; Raúl Porcel <armin76@gentoo.org> -eggdrop-1.6.17.ebuild, + -eggdrop-1.6.17-r2.ebuild, eggdrop-1.6.18-r1.ebuild: + alpha stable wrt #170668 and drop old 06 May 2007; Marius Mauch <genone@gentoo.org> eggdrop-1.6.17.ebuild, eggdrop-1.6.17-r2.ebuild, eggdrop-1.6.18-r1.ebuild: diff --git a/net-irc/eggdrop/eggdrop-1.6.17-r2.ebuild b/net-irc/eggdrop/eggdrop-1.6.17-r2.ebuild deleted file mode 100644 index 64cd3f0b04bf..000000000000 --- a/net-irc/eggdrop/eggdrop-1.6.17-r2.ebuild +++ /dev/null @@ -1,112 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/eggdrop/eggdrop-1.6.17-r2.ebuild,v 1.14 2007/05/06 12:25:38 genone Exp $ - -inherit eutils - -MY_P="eggdrop${PV}" -PATCHSET_V="1.4" - -DESCRIPTION="An IRC bot extensible with C or Tcl." -HOMEPAGE="http://www.eggheads.org/" -SRC_URI="ftp://ftp.eggheads.org/pub/eggdrop/source/1.6/${MY_P}.tar.gz - mirror://gentoo/${P}-patches-${PATCHSET_V}.tar.bz2 - http://dev.gentoo.org/~swegener/distfiles/${P}-patches-${PATCHSET_V}.tar.bz2" -KEYWORDS="alpha amd64 ia64 ~mips ppc sparc x86" -LICENSE="GPL-2" -SLOT="0" -IUSE="debug static mysql postgres ssl vanilla" - -DEPEND="dev-lang/tcl - !vanilla? ( - mysql? ( virtual/mysql ) - postgres? ( dev-db/postgresql ) - ssl? ( dev-libs/openssl ) - )" - -S="${WORKDIR}"/${MY_P} - -src_unpack() { - unpack ${A} - cd "${S}" - - if use vanilla - then - elog "Excluding patches that install additional modules, this effectively" - elog "disables the mysql, postgres and ssl USE flags." - echo - rm "${WORKDIR}"/patch/[12345678]*.patch - fi - - EPATCH_SUFFIX="patch" epatch || die "epatch failed" -} - -src_compile() { - local target="" - - use mysql || ( echo mysql ; echo mystats ) >>disabled_modules - use postgres || echo pgstats >>disabled_modules - use static && ( echo rijndael ; echo twofish ) >>disabled_modules - - econf $(use_with ssl) || die "econf failed" - - make config || die "module config failed" - - if use static && use debug - then - target="sdebug" - elif use static - then - target="static" - elif use debug - then - target="debug" - fi - - emake -j1 ${target} || die "emake ${target} failed" -} - -src_install() { - local a b - make DEST="${D}"/opt/eggdrop install || die "make install failed" - - for a in doc/* - do - [ -f ${a} ] && dodoc ${a} - done - - cd "${S}"/src/mod - for a in *.mod - do - for b in README UPDATES INSTALL TODO CONTENTS - do - [[ -f ${a}/${b} ]] && newdoc ${a}/${b} ${b}.${a} - done - done - - cd "${S}" - - dodoc text/motd.* - - use vanilla || dodoc \ - src/mod/botnetop.mod/botnetop.conf \ - src/mod/gseen.mod/gseen.conf \ - src/mod/mc_greet.mod/mc_greet.conf \ - src/mod/stats.mod/stats.conf \ - src/mod/away.mod/away.doc \ - src/mod/rcon.mod/matchbot.tcl \ - src/mod/mystats.mod/tools/mystats.{conf,sql} \ - src/mod/pgstats.mod/tools/{pgstats.conf,setup.sql} - - dohtml doc/html/*.html - - dobin "${FILESDIR}"/eggdrop-installer - doman doc/man1/eggdrop.1 -} - -pkg_postinst() { - elog - elog "NOTE: IPV6 support has been dropped by upstream maintainers." - elog "Please run /usr/bin/eggdrop-installer to install your eggdrop bot." - elog -} diff --git a/net-irc/eggdrop/eggdrop-1.6.17.ebuild b/net-irc/eggdrop/eggdrop-1.6.17.ebuild deleted file mode 100644 index c540b2551c1e..000000000000 --- a/net-irc/eggdrop/eggdrop-1.6.17.ebuild +++ /dev/null @@ -1,99 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/eggdrop/eggdrop-1.6.17.ebuild,v 1.15 2007/05/06 12:25:38 genone Exp $ - -inherit eutils - -MY_P="eggdrop${PV}" -PATCHSET_V="1.0" - -DESCRIPTION="An IRC bot extensible with C or Tcl." -HOMEPAGE="http://www.eggheads.org/" -SRC_URI="ftp://ftp.eggheads.org/pub/eggdrop/source/1.6/${MY_P}.tar.gz - mirror://gentoo/${P}-patches-${PATCHSET_V}.tar.bz2" -KEYWORDS="x86 sparc mips ia64 amd64 ppc alpha" -LICENSE="GPL-2" -SLOT="0" -IUSE="debug static mysql postgres ssl" - -DEPEND="dev-lang/tcl - mysql? ( <virtual/mysql-4.1 ) - postgres? ( dev-db/postgresql ) - ssl? ( dev-libs/openssl )" - -S=${WORKDIR}/${MY_P} - -src_unpack() { - unpack ${A} - cd ${S} - - EPATCH_SUFFIX="patch" epatch || die "epatch failed" -} - -src_compile() { - local target="" - - use mysql || ( echo mysql ; echo mystats ) >>disabled_modules - use postgres || echo pgstats >>disabled_modules - use static && ( echo rijndael ; echo twofish ) >>disabled_modules - - econf $(use_with ssl) || die "./configure failed" - - make config || die "module config failed" - - if use static && use debug - then - target="sdebug" - elif use static - then - target="static" - elif use debug - then - target="debug" - fi - - emake -j1 ${target} || die "emake ${target} failed" -} - -src_install() { - local a b - make DEST=${D}/opt/eggdrop install || die "make install failed" - - for a in doc/* - do - [ -f ${a} ] && dodoc ${a} - done - - cd ${S}/src/mod - for a in *.mod - do - for b in README UPDATES INSTALL TODO CONTENTS - do - [ -f ${a}/${b} ] && newdoc ${a}/${b} ${b}.${a} - done - done - - cd ${S} - dodoc \ - src/mod/botnetop.mod/botnetop.conf \ - src/mod/gseen.mod/gseen.conf \ - src/mod/mc_greet.mod/mc_greet.conf \ - src/mod/stats.mod/stats.conf \ - src/mod/away.mod/away.doc \ - src/mod/rcon.mod/matchbot.tcl \ - src/mod/mystats.mod/tools/mystats.{conf,sql} \ - src/mod/pgstats.mod/tools/pgstats.{conf,php,sql} \ - text/motd.* - - dohtml ${S}/doc/html/*.html - - dobin ${FILESDIR}/eggdrop-installer - doman doc/man1/eggdrop.1 -} - -pkg_postinst() { - elog - elog "NOTE: IPV6 support has been dropped by upstream maintainers." - elog "Please run /usr/bin/eggdrop-installer to install your eggdrop bot." - elog -} diff --git a/net-irc/eggdrop/eggdrop-1.6.18-r1.ebuild b/net-irc/eggdrop/eggdrop-1.6.18-r1.ebuild index a883e6dd6702..2bcc2c3afa90 100644 --- a/net-irc/eggdrop/eggdrop-1.6.18-r1.ebuild +++ b/net-irc/eggdrop/eggdrop-1.6.18-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/eggdrop/eggdrop-1.6.18-r1.ebuild,v 1.10 2007/05/06 12:25:38 genone Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/eggdrop/eggdrop-1.6.18-r1.ebuild,v 1.11 2007/05/15 16:08:16 armin76 Exp $ inherit eutils @@ -12,7 +12,7 @@ HOMEPAGE="http://www.eggheads.org/" SRC_URI="ftp://ftp.eggheads.org/pub/eggdrop/source/1.6/${MY_P}.tar.bz2 mirror://gentoo/${P}-patches-${PATCHSET_V}.tar.bz2 http://dev.gentoo.org/~swegener/distfiles/${P}-patches-${PATCHSET_V}.tar.bz2" -KEYWORDS="~alpha amd64 ia64 mips ppc sparc x86" +KEYWORDS="alpha amd64 ia64 mips ppc sparc x86" LICENSE="GPL-2" SLOT="0" IUSE="debug static mysql postgres ssl vanilla" diff --git a/net-irc/eggdrop/files/digest-eggdrop-1.6.17 b/net-irc/eggdrop/files/digest-eggdrop-1.6.17 deleted file mode 100644 index 4e569df5076d..000000000000 --- a/net-irc/eggdrop/files/digest-eggdrop-1.6.17 +++ /dev/null @@ -1,6 +0,0 @@ -MD5 dc780efa818d2b29b81e929940ca65cb eggdrop-1.6.17-patches-1.0.tar.bz2 309154 -RMD160 87f3610b15b928d3bec266958762244b7e472be1 eggdrop-1.6.17-patches-1.0.tar.bz2 309154 -SHA256 11de8cff328a2587f701532ed059973322b073334450edb32180615d0f5a0982 eggdrop-1.6.17-patches-1.0.tar.bz2 309154 -MD5 95b3744a45ac1420cf08d88ee0ed0b6c eggdrop1.6.17.tar.gz 1021902 -RMD160 28155b6ea80ad63b09a3ad636f970f1f8533e399 eggdrop1.6.17.tar.gz 1021902 -SHA256 a14fe1558dac6214c13b7bc469e10d654e4571c2a86cb3ff773d505a009591be eggdrop1.6.17.tar.gz 1021902 diff --git a/net-irc/eggdrop/files/digest-eggdrop-1.6.17-r2 b/net-irc/eggdrop/files/digest-eggdrop-1.6.17-r2 deleted file mode 100644 index 1013e3c13ee2..000000000000 --- a/net-irc/eggdrop/files/digest-eggdrop-1.6.17-r2 +++ /dev/null @@ -1,6 +0,0 @@ -MD5 538c39376b3fc2fcc897226ab434eebc eggdrop-1.6.17-patches-1.4.tar.bz2 319594 -RMD160 4ec178e99244b376d11c7829e1377d63692e37be eggdrop-1.6.17-patches-1.4.tar.bz2 319594 -SHA256 07076b3ab602977f1580bbf0f74ec2fc1ac279d265df21720750a89625b96bac eggdrop-1.6.17-patches-1.4.tar.bz2 319594 -MD5 95b3744a45ac1420cf08d88ee0ed0b6c eggdrop1.6.17.tar.gz 1021902 -RMD160 28155b6ea80ad63b09a3ad636f970f1f8533e399 eggdrop1.6.17.tar.gz 1021902 -SHA256 a14fe1558dac6214c13b7bc469e10d654e4571c2a86cb3ff773d505a009591be eggdrop1.6.17.tar.gz 1021902 |