diff options
Diffstat (limited to 'net-im/pork')
-rw-r--r-- | net-im/pork/ChangeLog | 8 | ||||
-rw-r--r-- | net-im/pork/Manifest | 7 | ||||
-rw-r--r-- | net-im/pork/files/digest-pork-0.99.3 | 1 | ||||
-rw-r--r-- | net-im/pork/metadata.xml | 8 | ||||
-rw-r--r-- | net-im/pork/pork-0.99.3.ebuild | 33 |
5 files changed, 54 insertions, 3 deletions
diff --git a/net-im/pork/ChangeLog b/net-im/pork/ChangeLog index f56eb6bb4887..8cea6d17c7ac 100644 --- a/net-im/pork/ChangeLog +++ b/net-im/pork/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-im/pork # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/pork/ChangeLog,v 1.17 2004/06/24 22:58:56 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/pork/ChangeLog,v 1.18 2004/07/19 17:23:52 lostlogic Exp $ + +*pork-0.99.3 (19 Jul 2004) + + 19 Jul 2004; Brandon Low <lostlogic@gentoo.org> +metadata.xml, + +pork-0.99.3.ebuild: + Bump, add metadata 10 Jun 2004; Aron Griffis <agriffis@gentoo.org> pork-0.99.1.ebuild, pork-0.99.2.ebuild: diff --git a/net-im/pork/Manifest b/net-im/pork/Manifest index c441754dcd5e..8481c726fc48 100644 --- a/net-im/pork/Manifest +++ b/net-im/pork/Manifest @@ -1,5 +1,8 @@ +MD5 f529c85be2710349bf5cf1436e6446fa pork-0.99.1.ebuild 821 +MD5 e259c1f7a4565f581de4a35ee8adc683 pork-0.99.3.ebuild 829 MD5 5ccaf25ffba9fb8d4dfa264ac4393554 ChangeLog 2376 +MD5 19b3cafbbe380403d46cccc45a984b80 metadata.xml 481 MD5 e259c1f7a4565f581de4a35ee8adc683 pork-0.99.2.ebuild 829 -MD5 f529c85be2710349bf5cf1436e6446fa pork-0.99.1.ebuild 821 -MD5 db7aa4b53531422954aff4f0ce4e4b07 files/digest-pork-0.99.2 63 MD5 c81eb42636cbba635685927fb886d1a7 files/digest-pork-0.99.1 63 +MD5 db7aa4b53531422954aff4f0ce4e4b07 files/digest-pork-0.99.2 63 +MD5 568e2108d2b68fb1e3dad71791e47ccb files/digest-pork-0.99.3 63 diff --git a/net-im/pork/files/digest-pork-0.99.3 b/net-im/pork/files/digest-pork-0.99.3 new file mode 100644 index 000000000000..1ded3225700f --- /dev/null +++ b/net-im/pork/files/digest-pork-0.99.3 @@ -0,0 +1 @@ +MD5 d975e564a2a8a93c9f262c0a0063e358 pork-0.99.3.tar.gz 421444 diff --git a/net-im/pork/metadata.xml b/net-im/pork/metadata.xml new file mode 100644 index 000000000000..3bedb7b12e59 --- /dev/null +++ b/net-im/pork/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>net-im</herd> +<longdescription> + Pork is an AIM client based on the GAIM libraries with an interface similar to IRCII. +</longdescription> +</pkgmetadata> diff --git a/net-im/pork/pork-0.99.3.ebuild b/net-im/pork/pork-0.99.3.ebuild new file mode 100644 index 000000000000..b170131d680c --- /dev/null +++ b/net-im/pork/pork-0.99.3.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/pork/pork-0.99.3.ebuild,v 1.1 2004/07/19 17:23:52 lostlogic Exp $ + +DESCRIPTION="Console based AIM client that looks like ircII" +HOMEPAGE="http://dev.ojnk.net/" +SRC_URI="mirror://sourceforge/ojnk/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~alpha ~sparc" +IUSE="perl" + +DEPEND="perl? ( dev-lang/perl ) + sys-libs/ncurses" + +src_compile() { + local myconf="" + use perl || myconf="${myconf} --disable-perl" + einfo "Configure options: ${myconf}" + econf ${myconf} || die "econf failed" + emake +} + +src_install() { + einstall + + doman doc/pork.1 + insinto /usr/share/pork/examples + doins examples/blist.txt + + dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README STYLE TODO QUICK_START +} |