blob: 1971b3e308f241c83adfa968b8430554dea12b6c (
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
30
31
32
33
34
35
36
37
38
39
40
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/moc/moc-2.1.4-r1.ebuild,v 1.1 2005/04/18 19:13:29 luckyduck Exp $
IUSE="vorbis mad oss"
inherit eutils
DESCRIPTION="Music On Console - ncurses interface for playing audio files"
HOMEPAGE="http://moc.daper.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="amd64 sparc x86"
DEPEND="media-libs/libao
sys-libs/ncurses
vorbis? ( media-libs/libvorbis )
mad? ( media-libs/libmad sys-libs/zlib media-libs/libid3tag )"
src_compile() {
local myconf
use vorbis || myconf="--without-ogg"
use mad || myconf="${myconf} --without-mp3"
use oss || myconf="${myconf} --without-oss"
econf ${myconf} || die "./configure failed"
emake || die "make failed"
}
src_install () {
make DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS ChangeLog NEWS README TODO
}
pkg_postinst() {
einfo "The binary was renamed due to conflicts with moc"
einfo "from the QT project. Its new name is mocp."
}
|