diff options
author | John J. Ellis <jje@gentoo.org> | 2003-07-19 04:06:23 +0000 |
---|---|---|
committer | John J. Ellis <jje@gentoo.org> | 2003-07-19 04:06:23 +0000 |
commit | bfb603a3869607008352d14b7426303cf54a3739 (patch) | |
tree | d3a59b0a65290cf270834facfc9ff09653d2cd17 /media-sound/rexima | |
parent | New package, ~x86 masked. Closes #20813. (diff) | |
download | gentoo-2-bfb603a3869607008352d14b7426303cf54a3739.tar.gz gentoo-2-bfb603a3869607008352d14b7426303cf54a3739.tar.bz2 gentoo-2-bfb603a3869607008352d14b7426303cf54a3739.zip |
New package, ~x86 masked. Closes #20813.
Diffstat (limited to 'media-sound/rexima')
-rw-r--r-- | media-sound/rexima/ChangeLog | 11 | ||||
-rw-r--r-- | media-sound/rexima/Manifest | 3 | ||||
-rw-r--r-- | media-sound/rexima/files/digest-rexima-1.4 | 1 | ||||
-rw-r--r-- | media-sound/rexima/rexima-1.4.ebuild | 36 |
4 files changed, 50 insertions, 1 deletions
diff --git a/media-sound/rexima/ChangeLog b/media-sound/rexima/ChangeLog new file mode 100644 index 000000000000..6e31902f0c9f --- /dev/null +++ b/media-sound/rexima/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for media-sound/rexima +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/rexima/ChangeLog,v 1.1 2003/07/19 04:06:16 jje Exp $ + +*rexima-1.4 (19 Jul 2003) + + 19 Jul 2003; jje <jje@gentoo.org> rexima-1.4.ebuild: + Initial revision. + + Submitted by: John Oxley <oxo-gentoo@rucus.ru.ac.za> + diff --git a/media-sound/rexima/Manifest b/media-sound/rexima/Manifest index 92b29d5cdb8d..f4be11cac0a9 100644 --- a/media-sound/rexima/Manifest +++ b/media-sound/rexima/Manifest @@ -1,2 +1,3 @@ -MD5 a1a3b213f4280edd230a24629f7aacd6 rexima-1.4.ebuild 760 +MD5 39f914bfd9ab70da65830603e4a16be5 rexima-1.4.ebuild 856 +MD5 bbb13913a36bdddc393eedd34748ca82 ChangeLog 376 MD5 3515b3d720d665d6e3df47ac7f173429 files/digest-rexima-1.4 61 diff --git a/media-sound/rexima/files/digest-rexima-1.4 b/media-sound/rexima/files/digest-rexima-1.4 new file mode 100644 index 000000000000..5f39fb69903b --- /dev/null +++ b/media-sound/rexima/files/digest-rexima-1.4 @@ -0,0 +1 @@ +MD5 333a4db26409b9cca9b9e96ddf42f44c rexima-1.4.tar.gz 15903 diff --git a/media-sound/rexima/rexima-1.4.ebuild b/media-sound/rexima/rexima-1.4.ebuild new file mode 100644 index 000000000000..56511a35f105 --- /dev/null +++ b/media-sound/rexima/rexima-1.4.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/rexima/rexima-1.4.ebuild,v 1.1 2003/07/19 04:06:16 jje Exp $ + +S=${WORKDIR}/${PN} +DESCRIPTION="A curses-based interactive mixer which can also be used from the command-line." +HOMEPAGE="http://rus.members.beeb.net/rexima.html" +SRC_URI="ftp://ftp.ibiblio.org/pub/Linux/apps/sound/mixers/${PN}-${PV}.tar.gz" + +DEPEND="virtual/glibc + sys-libs/ncurses" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86" + +S="${WORKDIR}/${P}" + +src_compile() { + cd ${S} + mv Makefile Makefile.orig + cat Makefile.orig | sed "s%/usr/local%/usr%" > Makefile + emake || die +} + +src_install () { + cd ${S} + + make \ + PREFIX=${D}/usr \ + BINDIR=${D}/usr/bin \ + MANDIR=${D}/usr/share/man \ + install || die + + dodoc COPYING NEWS README +} |