blob: 45a084b31482aa1da1b5756d6f5f38b5cf7c4c71 (
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-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /home/cvsroot/gentoo-x86/media-sound/moc/moc-1.1.0.ebuild
IUSE="oggvorbis mad oss"
S=${WORKDIR}/${P}
DESCRIPTION="Music On Console - ncurses interface for playing audio files"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
RESTRICT="nomirror"
HOMEPAGE="http://moc.daper.net/"
DEPEND="media-libs/libao
sys-libs/ncurses
oggvorbis? ( media-libs/libvorbis )
mad? ( media-libs/libmad sys-libs/zlib )"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-gcc3.patch
}
src_compile() {
local myconf
use oggvorbis || myconf="--without-ogg"
use mad || myconf="${myconf} --without-mp3"
use oss || myconf="${myconf} --without-oss"
econf ${myconf} || die
emake || die
}
src_install () {
einstall || die
}
|