blob: b79813f38c45fd817b0559d6256b8daf639bc6b5 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/gnome-mplayer/gnome-mplayer-0.6.0.ebuild,v 1.1 2008/02/16 07:22:47 drac Exp $
GCONF_DEBUG=no
inherit gnome2
DESCRIPTION="MPlayer GUI for GNOME Desktop Environment"
HOMEPAGE="http://dekorte.homeip.net/download/gnome-mplayer"
SRC_URI="http://dekorte.homeip.net/download/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
RDEPEND=">=x11-libs/gtk+-2.12
>=dev-libs/glib-2.14
>=dev-libs/dbus-glib-0.7
>=gnome-base/gconf-2
media-video/mplayer"
DEPEND="${RDEPEND}
dev-util/pkgconfig
sys-devel/gettext"
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
dodoc ChangeLog README DOCS/tech/*.txt
rm -rf "${D}"/usr/share/doc/${PN}
}
|