diff options
author | Daniel Black <dragonheart@gentoo.org> | 2009-10-14 07:16:50 +0000 |
---|---|---|
committer | Daniel Black <dragonheart@gentoo.org> | 2009-10-14 07:16:50 +0000 |
commit | 01277e00b722c2e5d7fc0e7fe19879ab439718e9 (patch) | |
tree | f006b2bb48bceeb1a9bdaf972b33a27b915d2573 /media-video/dvdstyler/dvdstyler-1.7.4.ebuild | |
parent | Version bump. Remove old. Per bug #288793. Moved from overlay. Thx to reavertm. (diff) | |
download | gentoo-2-01277e00b722c2e5d7fc0e7fe19879ab439718e9.tar.gz gentoo-2-01277e00b722c2e5d7fc0e7fe19879ab439718e9.tar.bz2 gentoo-2-01277e00b722c2e5d7fc0e7fe19879ab439718e9.zip |
add missing xmlto dependency as was noticed on irc #gentoo (by I forget who). Added version bump
(Portage version: 2.2_rc46/cvs/Linux x86_64)
Diffstat (limited to 'media-video/dvdstyler/dvdstyler-1.7.4.ebuild')
-rw-r--r-- | media-video/dvdstyler/dvdstyler-1.7.4.ebuild | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/media-video/dvdstyler/dvdstyler-1.7.4.ebuild b/media-video/dvdstyler/dvdstyler-1.7.4.ebuild new file mode 100644 index 000000000000..552ca4299221 --- /dev/null +++ b/media-video/dvdstyler/dvdstyler-1.7.4.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/dvdstyler/dvdstyler-1.7.4.ebuild,v 1.1 2009/10/14 07:16:49 dragonheart Exp $ + +EAPI=2 +inherit autotools wxwidgets eutils + +MY_P=${PN/dvds/DVDS}-${PV/_} + +DESCRIPTION="DVDStyler is a cross-platform DVD authoring System" +HOMEPAGE="http://www.dvdstyler.de" +SRC_URI="mirror://sourceforge/dvdstyler/${MY_P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="debug gnome" + +COMMON_DEPEND=">=media-video/ffmpeg-0.5[encode] + >=media-video/xine-ui-0.99.1 + x11-libs/wxGTK:2.8 + >=media-libs/wxsvg-1[ffmpeg] + >=media-libs/libexif-0.6.16 + gnome? ( >=gnome-base/libgnomeui-2 )" +RDEPEND="${COMMON_DEPEND} + virtual/cdrtools + >=media-video/dvdauthor-0.6.14 + >=app-cdr/dvd+rw-tools-7.1" +DEPEND="${COMMON_DEPEND} + dev-util/pkgconfig + app-text/xmlto + >=sys-devel/gettext-0.17" +PDEPEND=">=app-cdr/dvdisaster-0.71.0" + +S=${WORKDIR}/${MY_P} + +src_prepare() { + epatch "${FILESDIR}"/${P}-autoconf.patch + eautoreconf +} + +src_configure() { + export WX_GTK_VER="2.8" + need-wxwidgets gtk2 + econf \ + --docdir=/usr/share/doc/${PF} \ + $(use_enable debug) \ + --disable-dependency-tracking \ + --with-wx-config="${WX_CONFIG}" +} + +src_install() { + emake DESTDIR="${D}" install || die + #rm -rf "${D}"/usr/share/doc/${PN} + #dodoc AUTHORS ChangeLog README TODO +} |