diff options
author | Brandon Low <lostlogic@gentoo.org> | 2003-01-28 15:59:41 +0000 |
---|---|---|
committer | Brandon Low <lostlogic@gentoo.org> | 2003-01-28 15:59:41 +0000 |
commit | 611878b3e3d78e4f51ec9608dead7b83604d8197 (patch) | |
tree | a279b685751af5cf0b9779374041e1f24e40e28f /net-im/pork | |
parent | openh323 build updated for gnomemeeting 0.96 (diff) | |
download | historical-611878b3e3d78e4f51ec9608dead7b83604d8197.tar.gz historical-611878b3e3d78e4f51ec9608dead7b83604d8197.tar.bz2 historical-611878b3e3d78e4f51ec9608dead7b83604d8197.zip |
bump
Diffstat (limited to 'net-im/pork')
-rw-r--r-- | net-im/pork/ChangeLog | 7 | ||||
-rw-r--r-- | net-im/pork/files/digest-pork-0.4.0 | 1 | ||||
-rw-r--r-- | net-im/pork/pork-0.4.0.ebuild | 39 |
3 files changed, 46 insertions, 1 deletions
diff --git a/net-im/pork/ChangeLog b/net-im/pork/ChangeLog index c8f43ff07908..0a2e3ed88c7b 100644 --- a/net-im/pork/ChangeLog +++ b/net-im/pork/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-im/pork # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/pork/ChangeLog,v 1.2 2003/01/14 04:14:38 lostlogic Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/pork/ChangeLog,v 1.3 2003/01/28 15:59:41 lostlogic Exp $ + +*pork-0.4.0 (28 Jan 2003) + + 28 Jan 2003; Brandon Low <lostlogic@gentoo.org> pork-0.4.0.ebuild: + Bump, now includes a help system and a bunch of bugfixes :) *pork-0.3.0-r1 (13 Jan 2003) diff --git a/net-im/pork/files/digest-pork-0.4.0 b/net-im/pork/files/digest-pork-0.4.0 new file mode 100644 index 000000000000..272e0c00d8eb --- /dev/null +++ b/net-im/pork/files/digest-pork-0.4.0 @@ -0,0 +1 @@ +MD5 695cdd2f0b2c41e32cf105149bd630d6 pork-0.4.0.tar.gz 363302 diff --git a/net-im/pork/pork-0.4.0.ebuild b/net-im/pork/pork-0.4.0.ebuild new file mode 100644 index 000000000000..bef5adb6a33f --- /dev/null +++ b/net-im/pork/pork-0.4.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/pork/pork-0.4.0.ebuild,v 1.1 2003/01/28 15:59:41 lostlogic Exp $ + +IUSE="" + +SRC_URI="mirror://sourceforge/ojnk/${P}.tar.gz" +DESCRIPTION="Console based AIM client that looks like ircII" +HOMEPAGE="http://dev.ojnk.net/" +LICENSE="GPLv2" + +KEYWORDS="~x86" +SLOT="0" +DEPEND="perl? ( sys-devel/perl ) + sys-libs/ncurses" + +src_compile() { + local myconf="" + [ `use perl` ] || myconf="${myconf} --disable-perl" + einfo "Configure options: ${myconf}" + econf ${myconf} + emake +} + +src_install() { + einstall + + dodoc ${FILESDIR}/README.gentoo-${PV} + + doman doc/pork.1 + insinto /usr/share/pork/examples + doins examples/blist.txt + + dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README STYLE TODO +} + +pkg_postinst() { + einfo "Please read /usr/share/doc/${PN}-${PVR}/README.gentoo-${PV} for quickstart info." +} |