diff options
author | Jon Portnoy <avenj@gentoo.org> | 2003-04-13 16:55:40 +0000 |
---|---|---|
committer | Jon Portnoy <avenj@gentoo.org> | 2003-04-13 16:55:40 +0000 |
commit | 14dfcf9646ed3ab33c9758512368fba2ff3e44d3 (patch) | |
tree | 4f05f1620d27938bdf283573af2388397d12b853 /net-irc | |
parent | Version bump (diff) | |
download | historical-14dfcf9646ed3ab33c9758512368fba2ff3e44d3.tar.gz historical-14dfcf9646ed3ab33c9758512368fba2ff3e44d3.tar.bz2 historical-14dfcf9646ed3ab33c9758512368fba2ff3e44d3.zip |
Version bump
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/epic4/Manifest | 4 | ||||
-rw-r--r-- | net-irc/epic4/epic4-1.1.11.ebuild | 72 | ||||
-rw-r--r-- | net-irc/epic4/files/digest-epic4-1.1.11 | 2 |
3 files changed, 76 insertions, 2 deletions
diff --git a/net-irc/epic4/Manifest b/net-irc/epic4/Manifest index 7b98b0bd29b1..18c2929311a2 100644 --- a/net-irc/epic4/Manifest +++ b/net-irc/epic4/Manifest @@ -1,10 +1,10 @@ -MD5 de9ccf8101452fdb26f24d817829911f ChangeLog 2833 +MD5 d187e4e274438d357ae1973f8daabe41 ChangeLog 2966 MD5 75544b79d292a2ff9be99c4c50d9bfad epic4-1.0.1-r1.ebuild 1068 MD5 8ba4ab73d80b324a49ecb94ec8f82198 epic4-1.1.7.ebuild 1454 MD5 8f20db4ad2544034beab4e99de66ec0c epic4-1.0.1-r2.ebuild 1551 MD5 32acafaa952f6ae27c7207fad09bf625 epic4-1.1.10.ebuild 2092 MD5 d38e0deae457dd661ceb3db43cfb26d8 epic4-1.1.7-r1.ebuild 1940 -MD5 2a53a442625b58d4c3c5c7cebafca7f6 epic4-1.1.11.ebuild 1840 +MD5 2f38d1cc4f7ccd2c256fd1b992b812ac epic4-1.1.11.ebuild 1935 MD5 03a79394216d45e22c33ba93ac2cd364 files/digest-epic4-1.0.1-r1 129 MD5 1a7ec7aadf77db45a41d52234bd5bef6 files/digest-epic4-1.1.7 130 MD5 bec8cf892d8ff8ac39c9518af074a288 files/digest-epic4-1.0.1-r2 134 diff --git a/net-irc/epic4/epic4-1.1.11.ebuild b/net-irc/epic4/epic4-1.1.11.ebuild new file mode 100644 index 000000000000..fcd37fb722bb --- /dev/null +++ b/net-irc/epic4/epic4-1.1.11.ebuild @@ -0,0 +1,72 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/net-irc/epic4/epic4-1.1.11.ebuild,v 1.1 2003/04/13 16:55:27 avenj Exp $ + +IUSE="ipv6 perl ssl" + +DESCRIPTION="Epic4 IRC Client" +SRC_URI="ftp://prbh.org/pub/epic/EPIC4-ALPHA/${P}.tar.bz2 + ftp://prbh.org/pub/epic/EPIC4-PRODUCTION/epic4-help-20030114.tar.gz" +HOMEPAGE="http://epicsol.org" + +SLOT="0" +LICENSE="as-is" +KEYWORDS="~x86 ~ppc" + +DEPEND=">=sys-libs/ncurses-5.2 + perl? ( >=dev-lang/perl-5.6.1 ) + ssl? ( >=dev-libs/openssl-0.9.5 )" +inherit flag-o-matic +replace-flags "-O?" "-O" + +src_compile() { + myconf="" + + use ipv6 \ + && myconf="${myconf} --with-ipv6" \ + || myconf="${myconf} --without-ipv6" + + use perl \ + && myconf="${myconf} --with-perl" \ + || myconf="${myconf} --without-perl" + + use ssl \ + && myconf="${myconf} --with-ssl" \ + || myconf="${myconf} --without-ssl" + + econf \ + --libexecdir=/usr/lib/misc \ + ${myconf} || die + + make || die +} + +src_install () { + einstall \ + sharedir=${D}/usr/share \ + libexecdir=${D}/usr/lib/misc || die + + 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-20030114.tar.gz -C ${D}/usr/share/epic +} + +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 [ ! -e /usr/share/epic/script/local ]; then + cp ${FILESDIR}/local /usr/share/epic/script/ + fi +} diff --git a/net-irc/epic4/files/digest-epic4-1.1.11 b/net-irc/epic4/files/digest-epic4-1.1.11 new file mode 100644 index 000000000000..3a766b955f7e --- /dev/null +++ b/net-irc/epic4/files/digest-epic4-1.1.11 @@ -0,0 +1,2 @@ +MD5 5d2099866d1fc4cb697ef6939cfa9a14 epic4-1.1.11.tar.bz2 574742 +MD5 f4220b4cf989e320fbbd6051c5117307 epic4-help-20030114.tar.gz 287157 |