diff options
author | Raúl Porcel <armin76@gentoo.org> | 2007-02-19 18:56:11 +0000 |
---|---|---|
committer | Raúl Porcel <armin76@gentoo.org> | 2007-02-19 18:56:11 +0000 |
commit | d5b603ce47fe44caec08c2c094ac02b3f46bd6b2 (patch) | |
tree | 4851a51819752c4543719729af4f99c922b47367 /net-irc | |
parent | Redigest, Manifest2 (diff) | |
download | gentoo-2-d5b603ce47fe44caec08c2c094ac02b3f46bd6b2.tar.gz gentoo-2-d5b603ce47fe44caec08c2c094ac02b3f46bd6b2.tar.bz2 gentoo-2-d5b603ce47fe44caec08c2c094ac02b3f46bd6b2.zip |
Version bump, drop old and regenerate digest in Manifest2 format
(Portage version: 2.1.2-r9)
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/epic4/ChangeLog | 10 | ||||
-rw-r--r-- | net-irc/epic4/epic4-2.0-r1.ebuild | 86 | ||||
-rw-r--r-- | net-irc/epic4/epic4-2.6.ebuild (renamed from net-irc/epic4/epic4-2.2.ebuild) | 6 | ||||
-rw-r--r-- | net-irc/epic4/files/digest-epic4-2.0-r1 | 5 | ||||
-rw-r--r-- | net-irc/epic4/files/digest-epic4-2.6 (renamed from net-irc/epic4/files/digest-epic4-2.2) | 6 |
5 files changed, 14 insertions, 99 deletions
diff --git a/net-irc/epic4/ChangeLog b/net-irc/epic4/ChangeLog index 0f0ac717cc3c..98bee63cf6ea 100644 --- a/net-irc/epic4/ChangeLog +++ b/net-irc/epic4/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-irc/epic4 -# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/epic4/ChangeLog,v 1.64 2006/11/04 16:08:27 kugelfang Exp $ +# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/epic4/ChangeLog,v 1.65 2007/02/19 18:56:11 armin76 Exp $ + +*epic4-2.6 (19 Feb 2007) + + 19 Feb 2007; Raúl Porcel <armin76@gentoo.org> -epic4-2.0-r1.ebuild, + -epic4-2.2.ebuild, +epic4-2.6.ebuild: + Version bump, drop old and regenerate digest in Manifest2 format 04 Nov 2006; Danny van Dyk <kugelfang@gentoo.org> epic4-2.4.ebuild: Marked stable on amd64. diff --git a/net-irc/epic4/epic4-2.0-r1.ebuild b/net-irc/epic4/epic4-2.0-r1.ebuild deleted file mode 100644 index 3d2f534b239d..000000000000 --- a/net-irc/epic4/epic4-2.0-r1.ebuild +++ /dev/null @@ -1,86 +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/epic4/epic4-2.0-r1.ebuild,v 1.12 2006/10/18 21:20:33 jokey Exp $ - -inherit flag-o-matic eutils - -DESCRIPTION="Epic4 IRC Client" -HOMEPAGE="http://epicsol.org/" -SRC_URI="ftp://ftp.epicsol.org/pub/epic/EPIC4-PRODUCTION/${P}.tar.bz2 - ftp://prbh.org/pub/epic/EPIC4-PRODUCTION/epic4-help-20040801.tar.gz - mirror://gentoo/epic4-local.bz2" - -LICENSE="as-is" -SLOT="0" -KEYWORDS="x86 ppc ~ia64 alpha hppa sparc amd64 ppc-macos" -IUSE="ipv6 perl ssl" - -DEPEND=">=sys-libs/ncurses-5.2 - perl? ( >=dev-lang/perl-5.6.1 ) - ssl? ( >=dev-libs/openssl-0.9.5 )" - -pkg_setup() { - if use perl && built_with_use dev-lang/perl ithreads - then - error "You need perl compiled with USE=\"-ithreads\" to be able to compile epic4." - die "perl with USE=\"-ithreads\" needed" - fi -} - -src_unpack() { - unpack ${A} - cd ${S} - - epatch ${FILESDIR}/${PV}-toggle-stop-screen.patch - epatch ${FILESDIR}/epic-defaultserver.patch -} - -src_compile() { - replace-flags "-O?" "-O" - - econf \ - --libexecdir=/usr/lib/misc \ - `use_with ipv6` \ - `use_with perl` \ - `use_with ssl` \ - || die "econf failed" - make || die "make failed" -} - -src_install () { - einstall \ - sharedir=${D}/usr/share \ - libexecdir=${D}/usr/lib/misc || die "einstall failed" - - rm -f ${D}/usr/bin/epic - dosym epic-EPIC4-${PV} /usr/bin/epic - - dodoc BUG_FORM COPYRIGHT README KNOWNBUGS VOTES - docinto doc - cd doc - dodoc *.txt colors EPIC* IRCII_VERSIONS local_vars missing new-load - dodoc nicknames outputhelp server_groups SILLINESS TS4 - - dodir /usr/share/epic - tar zxvf ${DISTDIR}/epic4-help-20040801.tar.gz -C ${D}/usr/share/epic - - rm -f ${D}/usr/share/epic/help/Makefile - rm -rf ${D}/usr/share/epic/help/CVS - - chown -R root:root ${D}/usr/share/epic/help -} - -pkg_postinst() { - einfo "If /usr/share/epic/script/local does not exist, I will now" - einfo "create it. If you do not like the look/feel of this file, or" - einfo "if you'd prefer to use your own script, simply remove this" - einfo "file. If you want to prevent this file from being installed" - einfo "in the future, simply create an empty file with this name." - - if [ ! -f ${ROOT}/usr/share/epic/script/local ]; then - cp ${WORKDIR}/epic4-local ${ROOT}/usr/share/epic/script/local - fi - - # Fix for bug 59075 - chmod 755 ${ROOT}/usr/share/epic/help -} diff --git a/net-irc/epic4/epic4-2.2.ebuild b/net-irc/epic4/epic4-2.6.ebuild index 2c7b520be02a..9b99c744fba3 100644 --- a/net-irc/epic4/epic4-2.2.ebuild +++ b/net-irc/epic4/epic4-2.6.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/epic4/epic4-2.2.ebuild,v 1.13 2006/10/18 21:20:33 jokey Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/epic4/epic4-2.6.ebuild,v 1.1 2007/02/19 18:56:11 armin76 Exp $ inherit flag-o-matic eutils @@ -14,7 +14,7 @@ SRC_URI="ftp://ftp.epicsol.org/pub/epic/EPIC4-PRODUCTION/${P}.tar.bz2 LICENSE="as-is" SLOT="0" -KEYWORDS="alpha amd64 hppa ia64 ppc ~ppc-macos sparc x86" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc-macos ~sparc ~x86" IUSE="ipv6 perl ssl" DEPEND=">=sys-libs/ncurses-5.2 diff --git a/net-irc/epic4/files/digest-epic4-2.0-r1 b/net-irc/epic4/files/digest-epic4-2.0-r1 deleted file mode 100644 index b4b2727dc87b..000000000000 --- a/net-irc/epic4/files/digest-epic4-2.0-r1 +++ /dev/null @@ -1,5 +0,0 @@ -MD5 81c50c94762bd33349826b2f5b5e6278 epic4-2.0.tar.bz2 627102 -MD5 c283d1c17826708bc265e3f91b860f54 epic4-help-20040801.tar.gz 302562 -MD5 9e55061deeb335b75b3a9a293d2c190c epic4-local.bz2 6530 -RMD160 ed7e0d3f8c9d24794b4a9718ae31982934e4056f epic4-local.bz2 6530 -SHA256 4509ac8e491ac0b75dc5ddcef845b02b3610804dd98de9b5b98d58630be322cd epic4-local.bz2 6530 diff --git a/net-irc/epic4/files/digest-epic4-2.2 b/net-irc/epic4/files/digest-epic4-2.6 index 78910488664e..0a8dca3eac8a 100644 --- a/net-irc/epic4/files/digest-epic4-2.2 +++ b/net-irc/epic4/files/digest-epic4-2.6 @@ -1,6 +1,6 @@ -MD5 e4d5d799b43f3c7882e8e7616099d4fc epic4-2.2.tar.bz2 623254 -RMD160 8f1f1b446bd3260e665093864f1becc0b625be32 epic4-2.2.tar.bz2 623254 -SHA256 7f3f011c2392e19c0f12ae669c28f14e8a730918778809191672300dced76291 epic4-2.2.tar.bz2 623254 +MD5 1bbc89c7f0f39cbaa6824f50baa44b5c epic4-2.6.tar.bz2 626992 +RMD160 9c88de9c0608e118df186e873ffb09fe364a5ed4 epic4-2.6.tar.bz2 626992 +SHA256 4f08719e9634ab7b7b175691aa82d2c7b59c6445183c9b6ada20408707b81c43 epic4-2.6.tar.bz2 626992 MD5 9888d1af465ca72bf9a02487264071a5 epic4-help-20050315.tar.gz 332502 RMD160 b4237357e905468ab4fd7710283d6bffee067c5e epic4-help-20050315.tar.gz 332502 SHA256 714afd07348731e6ac82e1f6548acc12e84539b3106ab27fa5d00ed5696256f7 epic4-help-20050315.tar.gz 332502 |