diff options
author | Matt Keadle <mkeadle@gentoo.org> | 2003-03-16 20:30:56 +0000 |
---|---|---|
committer | Matt Keadle <mkeadle@gentoo.org> | 2003-03-16 20:30:56 +0000 |
commit | 8e621ec50488dcd70476709af13485cee5b97e2c (patch) | |
tree | 68351572de2fface7c9de8f199a321cec10da7fd /media-sound/imp3sh | |
parent | new tv viewing application (diff) | |
download | gentoo-2-8e621ec50488dcd70476709af13485cee5b97e2c.tar.gz gentoo-2-8e621ec50488dcd70476709af13485cee5b97e2c.tar.bz2 gentoo-2-8e621ec50488dcd70476709af13485cee5b97e2c.zip |
Initial release to portage
Diffstat (limited to 'media-sound/imp3sh')
-rw-r--r-- | media-sound/imp3sh/files/digest-imp3sh-0.2.3 | 1 | ||||
-rw-r--r-- | media-sound/imp3sh/imp3sh-0.2.3.ebuild | 35 |
2 files changed, 36 insertions, 0 deletions
diff --git a/media-sound/imp3sh/files/digest-imp3sh-0.2.3 b/media-sound/imp3sh/files/digest-imp3sh-0.2.3 new file mode 100644 index 000000000000..91272792ebd7 --- /dev/null +++ b/media-sound/imp3sh/files/digest-imp3sh-0.2.3 @@ -0,0 +1 @@ +MD5 27ed027f20631ddb1654b4986d0f85d5 imp3sh-0.2.3.tar.gz 318691 diff --git a/media-sound/imp3sh/imp3sh-0.2.3.ebuild b/media-sound/imp3sh/imp3sh-0.2.3.ebuild new file mode 100644 index 000000000000..44dcc98f3235 --- /dev/null +++ b/media-sound/imp3sh/imp3sh-0.2.3.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header + +S=${WORKDIR}/${P} +DESCRIPTION="flexible playlist manipulation shell and song player/streamer" +SRC_URI="http://www.geocities.com/kman_can/${P}.tar.gz" +HOMEPAGE="http://www.geocities.com/kman_can/" +LICENSE="GPL-2" +KEYWORDS="~x86" +SLOT="0" + +IUSE="" + +DEPEND="sys-libs/ncurses + oggvorbis? ( media-libs/libvorbis + media-libs/libogg + media-libs/libao )" +RDEPEND="" + + +src_compile() { + + econf || die + emake || die + +} + +src_install () { + + make DESTDIR=${D} install || die + dodoc README* CHANGES web/README.imp3web web/imp3web.php EXAMPLE.imp3sh EXTERNAL.players + # Some docs are liner notes in the actual .c files. UHG. + dodoc piped-io/imp3sh*.c +} |