blob: 1e5d3fcd88c20f5b6e9f158574f21b908497eb83 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnustep-apps/cynthiune/cynthiune-0.9.5-r1.ebuild,v 1.8 2008/04/07 11:35:08 voyageur Exp $
inherit gnustep-2
S=${WORKDIR}/${P/c/C}
DESCRIPTION="Free software and romantic music player for GNUstep."
HOMEPAGE="http://organact.mine.nu/~wolfgang/cynthiune"
SRC_URI="http://organact.mine.nu/~wolfgang/cynthiune/${P/c/C}.tar.gz"
IUSE="arts esd flac mad modplug musepack timidity vorbis"
KEYWORDS="amd64 ppc x86"
LICENSE="GPL-2"
SLOT="0"
DEPEND="media-libs/audiofile
media-libs/taglib
arts? ( kde-base/arts )
esd? ( media-sound/esound )
flac? ( media-libs/flac )
mad? ( dev-util/pkgconfig
media-libs/libid3tag
media-libs/libmad )
musepack? ( media-libs/libmpcdec )
modplug? ( media-libs/libmodplug )
timidity? ( media-sound/timidity++ )
vorbis? ( >=media-libs/libogg-1.1.2
>=media-libs/libvorbis-1.0.1-r2 )
=media-libs/musicbrainz-2*"
RDEPEND="${DEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-flac-1.1.3.patch
epatch "${FILESDIR}"/${P}-set-macro.patch
epatch "${FILESDIR}"/${P}-NSCellExtensions.patch
epatch "${FILESDIR}"/${P}-NSMutableDictionary.patch
epatch "${FILESDIR}"/${P}-gnustep-make-2.patch
}
cynthiune_get_config() {
# Gentoo doesn't have libavi (any more)
local myconf="disable-windowsmedia=yes"
use arts || myconf="${myconf} disable-arts=yes"
use esd || myconf="${myconf} disable-esound=yes"
use flac || myconf="${myconf} disable-flac=yes"
use mad || myconf="${myconf} disable-mp3=yes disable-id3tag=yes"
use modplug || myconf="${myconf} disable-mod=yes"
use musepack || myconf="${myconf} disable-musepack=yes"
use timidity || myconf="${myconf} disable-timidity=yes"
use vorbis || myconf="${myconf} disable-ogg=yes"
echo ${myconf}
}
src_compile() {
egnustep_env
egnustep_make "$(cynthiune_get_config)" || die "make failed"
}
src_install() {
egnustep_env
egnustep_install "$(cynthiune_get_config)" || die
}
|