blob: 147f2970a58651c892ae1a380b72f3afb96d7d14 (
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/cmus/cmus-2.2.0-r2.ebuild,v 1.5 2009/12/04 10:32:54 ssuominen Exp $
EAPI=2
inherit eutils multilib
DESCRIPTION="A ncurses based music player with plugin support for many formats"
HOMEPAGE="http://cmus.sourceforge.net/"
SRC_URI="http://mirror.greaterscope.net/cmus/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc x86 ~x86-fbsd"
IUSE="aac alsa ao debug examples flac mad mikmod modplug mp4 oss pidgin unicode
vorbis wavpack wma zsh-completion"
DEPEND="sys-libs/ncurses[unicode?]
aac? ( media-libs/faad2 )
alsa? ( >=media-libs/alsa-lib-1.0.11 )
ao? ( media-libs/libao )
flac? ( media-libs/flac )
mad? ( >=media-libs/libmad-0.14 )
mikmod? ( media-libs/libmikmod )
modplug? ( >=media-libs/libmodplug-0.7 )
mp4? ( >=media-libs/libmp4v2-1.9 )
vorbis? ( >=media-libs/libvorbis-1.0 )
wavpack? ( media-sound/wavpack )
wma? ( >=media-video/ffmpeg-0.4.9_p20080326 )"
RDEPEND="${DEPEND}
zsh-completion? ( app-shells/zsh )
pidgin? ( net-im/pidgin
dev-python/dbus-python )"
my_config() {
local value
use ${1} && value=y || value=n
myconf="${myconf} ${2}=${value}"
}
src_prepare() {
epatch "${FILESDIR}"/${P}-new-ffmpeg.patch \
"${FILESDIR}"/${P}-symlink_attack.patch
sed -i -e 's:<mp4.h>:<mp4v2/mp4v2.h>:' mp4.c || die
}
src_configure() {
local debuglevel=1 myconf="CONFIG_SUN=n CONFIG_MPC=n"
use debug && debuglevel=2
my_config aac CONFIG_AAC
my_config ao CONFIG_AO
my_config alsa CONFIG_ALSA
my_config flac CONFIG_FLAC
my_config mad CONFIG_MAD
my_config mikmod CONFIG_MIKMOD
my_config mp4 CONFIG_MP4
my_config modplug CONFIG_MODPLUG
my_config oss CONFIG_OSS
my_config vorbis CONFIG_VORBIS
my_config wavpack CONFIG_WAVPACK
my_config wma CONFIG_FFMPEG
# econf doesn't work, because configure wants "prefix" (and similar) without dashes
./configure prefix=/usr ${myconf} exampledir=/usr/share/doc/${PF}/examples \
libdir=/usr/$(get_libdir) DEBUG=${debuglevel} || die "configure failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS README
use examples || rm -rf "${D}/usr/share/doc/${PF}/examples/"
if use zsh-completion; then
insinto /usr/share/zsh/site-functions
doins contrib/_cmus
fi
if use pidgin; then
sed -i -e "s:/usr/local/bin/python:/usr/bin/python:" contrib/cmus-updatepidgin.py
newbin contrib/cmus-updatepidgin.py cmus-updatepidgin
fi
}
|