blob: 048e06d491198b9796ee1f0047d69b1c543bdb04 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/dvdstyler/dvdstyler-1.5-r1.ebuild,v 1.4 2008/04/01 15:17:39 dragonheart Exp $
inherit wxwidgets
MY_P=DVDStyler-${PV}
DESCRIPTION="DVDStyler is a cross-platform DVD authoring System"
HOMEPAGE="http://www.dvdstyler.de"
SRC_URI="mirror://sourceforge/dvdstyler/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
IUSE="gnome"
RDEPEND="app-cdr/dvd+rw-tools
>=media-video/dvdauthor-0.6.10
media-video/mpgtx
>=media-video/mjpegtools-1.8.0
=x11-libs/wxGTK-2.6*
media-libs/netpbm
>=media-libs/wxsvg-1.0_beta7
virtual/cdrtools
virtual/libc
gnome? ( >=gnome-base/libgnomeui-2.0 )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
sys-devel/gettext"
S="${WORKDIR}"/${MY_P}
src_compile() {
export WX_GTK_VER="2.6"
need-wxwidgets gtk2
myconf="${myconf} --with-wx-config=${WX_CONFIG}"
econf ${myconf} || die "econf failed!"
emake || die "emake failed!"
}
src_install() {
emake DESTDIR="${D}" install || die "failed to install"
rm "${D}"usr/share/doc/${PN}/COPYING "${D}"usr/share/doc/${PN}/INSTALL
mv "${D}"usr/share/doc/${PN} "${D}"usr/share/doc/${PF}
}
|