summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Wegener <swegener@gentoo.org>2005-03-16 18:45:23 +0000
committerSven Wegener <swegener@gentoo.org>2005-03-16 18:45:23 +0000
commit17a0ef34dcbd0101ba540087839580e350c1b946 (patch)
treecd61285361868919c6c42c145f44b03c007da828 /net-irc
parentxml-commons-resolver now makes use of java-pkg_dosrc (diff)
downloadgentoo-2-17a0ef34dcbd0101ba540087839580e350c1b946.tar.gz
gentoo-2-17a0ef34dcbd0101ba540087839580e350c1b946.tar.bz2
gentoo-2-17a0ef34dcbd0101ba540087839580e350c1b946.zip
Initial commit. ebuild based on the one Ed Wildgoose <gentoo@wildgooses.com> posted to bug #85208.
(Portage version: 2.0.51.19)
Diffstat (limited to 'net-irc')
-rw-r--r--net-irc/rhapsody/ChangeLog11
-rw-r--r--net-irc/rhapsody/Manifest2
-rw-r--r--net-irc/rhapsody/files/digest-rhapsody-0.24b1
-rw-r--r--net-irc/rhapsody/metadata.xml5
-rw-r--r--net-irc/rhapsody/rhapsody-0.24b.ebuild26
5 files changed, 45 insertions, 0 deletions
diff --git a/net-irc/rhapsody/ChangeLog b/net-irc/rhapsody/ChangeLog
new file mode 100644
index 000000000000..4d0759c22e43
--- /dev/null
+++ b/net-irc/rhapsody/ChangeLog
@@ -0,0 +1,11 @@
+# ChangeLog for net-irc/rhapsody
+# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-irc/rhapsody/ChangeLog,v 1.1 2005/03/16 18:45:23 swegener Exp $
+
+*rhapsody-0.24b (16 Mar 2005)
+
+ 16 Mar 2005; Sven Wegener <swegener@gentoo.org> +metadata.xml,
+ +rhapsody-0.24b.ebuild:
+ Initial commit. ebuild based on the one Ed Wildgoose <gentoo@wildgooses.com>
+ posted to bug #85208.
+
diff --git a/net-irc/rhapsody/Manifest b/net-irc/rhapsody/Manifest
new file mode 100644
index 000000000000..a5e14c307fb1
--- /dev/null
+++ b/net-irc/rhapsody/Manifest
@@ -0,0 +1,2 @@
+MD5 7bed8bb45c495c5ca456d776a0eb341a rhapsody-0.24b.ebuild 520
+MD5 996627b6aab99379e2a240f5d035b108 files/digest-rhapsody-0.24b 62
diff --git a/net-irc/rhapsody/files/digest-rhapsody-0.24b b/net-irc/rhapsody/files/digest-rhapsody-0.24b
new file mode 100644
index 000000000000..ec9c89676fca
--- /dev/null
+++ b/net-irc/rhapsody/files/digest-rhapsody-0.24b
@@ -0,0 +1 @@
+MD5 6cd5ab8cf76a5d933afc57891c8d330a rhapsody_0.24b.tgz 97731
diff --git a/net-irc/rhapsody/metadata.xml b/net-irc/rhapsody/metadata.xml
new file mode 100644
index 000000000000..6ef15e900f17
--- /dev/null
+++ b/net-irc/rhapsody/metadata.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>net-irc</herd>
+</pkgmetadata>
diff --git a/net-irc/rhapsody/rhapsody-0.24b.ebuild b/net-irc/rhapsody/rhapsody-0.24b.ebuild
new file mode 100644
index 000000000000..83dd37e307f0
--- /dev/null
+++ b/net-irc/rhapsody/rhapsody-0.24b.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-irc/rhapsody/rhapsody-0.24b.ebuild,v 1.1 2005/03/16 18:45:23 swegener Exp $
+
+DESCRIPTION="IRC client intended to be displayed on a text console"
+HOMEPAGE="http://rhapsody.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${PN}/${PN}_${PV}.tgz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86"
+IUSE=""
+
+DEPEND=">=sys-libs/ncurses-5.0"
+
+src_compile() {
+ ./configure -i /usr/share/rhapsody || die "configure failed"
+ emake LOCALFLAGS="${CFLAGS}" || die "emake failed"
+}
+
+src_install() {
+ dobin rhapsody || die "dobin failed"
+ insinto /usr/share/rhapsody/help
+ doins help/*.hlp || die "doins failed"
+ dodoc docs/CHANGELOG || die "dodoc failed"
+}