blob: ad3496efae8836e42844d1c6c6e1591fe397aa2d (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/gnomad/gnomad-2.5.0.ebuild,v 1.4 2004/12/19 05:46:15 eradicator Exp $
IUSE=""
inherit flag-o-matic gnome2
ALLOWED_FLAGS=""
strip-flags
MY_PN="${PN}2"
MY_P="${MY_PN}-${PV}"
S=${WORKDIR}/${MY_P}
DESCRIPTION="A GNOME2 frontend for Creative Players (Zen, JukeBox, etc ...)"
HOMEPAGE="http://gnomad2.sourceforge.net/"
SRC_URI="mirror://sourceforge/${MY_PN}/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
#-sparc: 2.4.4: Application crashes on startup (Gnome crash detection)
KEYWORDS="amd64 ~ppc -sparc x86"
DEPEND=">=gnome-base/libgnomeui-2
>=media-libs/libnjb-1.2
media-libs/libid3tag
>=gnome-base/gconf-1.2"
RDEPEND="${DEPEND}
>=dev-util/pkgconfig-0.12.0
>=dev-util/intltool-0.21"
src_install() {
make DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog NEWS README TODO
}
|