blob: ccc3b377a3eb7b5539745173ae0c80a79fa22592 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/imp3sh/imp3sh-0.2.3.ebuild,v 1.6 2004/03/01 05:37:14 eradicator Exp $
DESCRIPTION="flexible playlist manipulation shell and song player/streamer"
HOMEPAGE="http://www.geocities.com/kman_can/"
SRC_URI="http://www.geocities.com/kman_can/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
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
}
|