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 | d4b366cd38cb63a65d728bbcbacafb8cda65cfb4 (patch) | |
tree | 7d89ed091c7e922ecd0ae4ff39e0c0682ba702af /media-sound/imp3sh | |
parent | new tv viewing application (diff) | |
download | historical-d4b366cd38cb63a65d728bbcbacafb8cda65cfb4.tar.gz historical-d4b366cd38cb63a65d728bbcbacafb8cda65cfb4.tar.bz2 historical-d4b366cd38cb63a65d728bbcbacafb8cda65cfb4.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 +} |