blob: c4601c9a66b04f4d527dd6ec5bc3e88cdbe23c44 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/bmpx/bmpx-0.12.2.ebuild,v 1.1 2005/10/31 12:20:37 azarah Exp $
inherit gnome2 eutils
MY_P=${P/_p/-}
MY_P=${MY_P/_rc/_RC}
S="${WORKDIR}/${MY_P}"
DESCRIPTION="Next generation Beep Media Player"
HOMEPAGE="http://bmpx.berlios.de/"
SRC_URI="http://download.berlios.de/${PN}/${MY_P}.tar.bz2
mirror://gentoo/gentoo_ice-xmms-0.2.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="a52 dbus debug flac mad ogg perl python theora vorbis xchat xine"
RDEPEND=">=dev-libs/glib-2.8.0
>=x11-libs/gtk+-2.8.0
>=gnome-base/libglade-2.5.1
>=x11-libs/pango-1.10.0
>=dev-libs/libxml2-2.6.18
>=x11-libs/cairo-1.0.0
>=media-libs/taglib-1.4
dbus? ( >=sys-apps/dbus-0.3.5 )
virtual/fam
net-misc/curl
>=media-libs/xine-lib-1.0.1"
# gstreamer support is on hold until gstreamer 0.9
# xine? ( >=media-libs/xine-lib-1.0.1 )
# !xine? ( >=media-libs/gstreamer-0.8.9-r3
# >=media-libs/gst-plugins-0.8.8
# >=media-plugins/gst-plugins-pango-0.8.8
# mad? ( >=media-plugins/gst-plugins-mad-0.8.8 )
# ogg? ( >=media-plugins/gst-plugins-ogg-0.8.8 )
# vorbis? ( >=media-plugins/gst-plugins-ogg-0.8.8
# >=media-plugins/gst-plugins-vorbis-0.8.8 )
# a52? ( >=media-plugins/gst-plugins-a52dec-0.8.8 )
# flac? ( >=media-plugins/gst-plugins-flac-0.8.8 )
# theora? ( >=media-plugins/gst-plugins-ogg-0.8.8
# >=media-plugins/gst-plugins-theora-0.8.8 )
# )"
DEPEND="${RDEPEND}
>=dev-util/intltool-0.29
>=dev-util/pkgconfig-0.12.0"
DOCS="AUTHORS COPYING ChangeLog NEWS README"
# gstreamer is default backend
G2CONF="${G2CONF} \
$(use_enable dbus) \
$(use_enable perl) \
$(use_enable python) \
$(use_enable xchat)"
#useq xine || G2CONF="${G2CONF} --enable-gst"
USE_DESTDIR="1"
src_install() {
gnome2_src_install
insinto /usr/share/bmpx/skins/gentoo_ice
doins ${WORKDIR}/gentoo_ice/*
docinto gentoo_ice
dodoc ${WORKDIR}/README
}
|