diff options
author | Patrick Lauer <patrick@gentoo.org> | 2014-11-04 04:14:08 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2014-11-04 04:14:08 +0000 |
commit | 73c3fa5f9f380a8affaa7c40f95c2c07dac94d12 (patch) | |
tree | fbc09cf157ecb56ca1a19e128585d7890a1553a1 /net-irc | |
parent | Clean out old for repoman happy, stable on x86 to preserve keywording (diff) | |
download | gentoo-2-73c3fa5f9f380a8affaa7c40f95c2c07dac94d12.tar.gz gentoo-2-73c3fa5f9f380a8affaa7c40f95c2c07dac94d12.tar.bz2 gentoo-2-73c3fa5f9f380a8affaa7c40f95c2c07dac94d12.zip |
Drop old for more repoman happy
(Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/eggdrop/ChangeLog | 6 | ||||
-rw-r--r-- | net-irc/eggdrop/eggdrop-1.6.18-r3.ebuild | 113 | ||||
-rw-r--r-- | net-irc/eggdrop/eggdrop-1.6.19.ebuild | 116 |
3 files changed, 5 insertions, 230 deletions
diff --git a/net-irc/eggdrop/ChangeLog b/net-irc/eggdrop/ChangeLog index 57a24eabd3e1..ed510ae9985a 100644 --- a/net-irc/eggdrop/ChangeLog +++ b/net-irc/eggdrop/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-irc/eggdrop # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/eggdrop/ChangeLog,v 1.92 2014/11/03 13:37:41 titanofold Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/eggdrop/ChangeLog,v 1.93 2014/11/04 04:14:08 patrick Exp $ + + 04 Nov 2014; Patrick Lauer <patrick@gentoo.org> -eggdrop-1.6.18-r3.ebuild, + -eggdrop-1.6.19.ebuild: + Drop old for more repoman happy 03 Nov 2014; Aaron W. Swenson <titanofold@gentoo.org> eggdrop-1.6.18-r3.ebuild, eggdrop-1.6.19.ebuild, eggdrop-1.6.21.ebuild: diff --git a/net-irc/eggdrop/eggdrop-1.6.18-r3.ebuild b/net-irc/eggdrop/eggdrop-1.6.18-r3.ebuild deleted file mode 100644 index ae82196077ef..000000000000 --- a/net-irc/eggdrop/eggdrop-1.6.18-r3.ebuild +++ /dev/null @@ -1,113 +0,0 @@ -# Copyright 1999-2014 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-r3.ebuild,v 1.13 2014/11/03 13:37:41 titanofold Exp $ - -EAPI=2 - -inherit eutils - -MY_P="eggdrop${PV}" -PATCHSET_V="1.3" - -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.bz2 - mirror://gentoo/${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? ( virtual/postgresql[server] ) - 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 -f "${WORKDIR}"/patch/[1-8]*.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 - emake -j1 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.19.ebuild b/net-irc/eggdrop/eggdrop-1.6.19.ebuild deleted file mode 100644 index 7c7a5e9df663..000000000000 --- a/net-irc/eggdrop/eggdrop-1.6.19.ebuild +++ /dev/null @@ -1,116 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/eggdrop/eggdrop-1.6.19.ebuild,v 1.9 2014/11/03 13:37:41 titanofold Exp $ - -EAPI=2 - -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.bz2 - mirror://gentoo/${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? ( virtual/postgresql[server] ) - 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 -f "${WORKDIR}"/patch/[1-8]*.patch - fi - - EPATCH_SUFFIX="patch" epatch || die "epatch failed" - sed -i -e '/^install-\(bin\|data\):$/s/$/ install-start/' Makefile.in || \ - die "sed Makefile.in 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 ${target} || die "emake ${target} failed" -} - -src_install() { - local a b - # bug #295302 - emake -j1 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 -} |