diff options
author | Jakub Moc <jakub@gentoo.org> | 2006-06-18 13:14:22 +0000 |
---|---|---|
committer | Jakub Moc <jakub@gentoo.org> | 2006-06-18 13:14:22 +0000 |
commit | a7002d0b2128cac2eab8a5c9379af08c819e6e7b (patch) | |
tree | 33b4cffebc0ba32051172789d6cfcb14baa83b01 /media-video/mandvd/mandvd-1.9.2.ebuild | |
parent | media-gfx/mirage - do not install duplicate ungzipped docs into /usr/share/mi... (diff) | |
download | sunrise-a7002d0b2128cac2eab8a5c9379af08c819e6e7b.tar.gz sunrise-a7002d0b2128cac2eab8a5c9379af08c819e6e7b.tar.bz2 sunrise-a7002d0b2128cac2eab8a5c9379af08c819e6e7b.zip |
media-video/mandvd - New ebuild, Bug 134272
svn path=/sunrise/; revision=115
Diffstat (limited to 'media-video/mandvd/mandvd-1.9.2.ebuild')
-rw-r--r-- | media-video/mandvd/mandvd-1.9.2.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/media-video/mandvd/mandvd-1.9.2.ebuild b/media-video/mandvd/mandvd-1.9.2.ebuild new file mode 100644 index 000000000..7e1d27f20 --- /dev/null +++ b/media-video/mandvd/mandvd-1.9.2.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +inherit eutils qt3 + +MY_P="ManDVD-${PV}src" +S="${WORKDIR}/${MY_P}" + +DESCRIPTION="This is a program to simply create DVD Video" +HOMEPAGE="http://www.kde-apps.org/content/show.php?content=38347" +SRC_URI="http://csgib36.ifrance.com/FTP/${P}src.tar.gz" + +LICENSE="GPL-2" +IUSE="" +SLOT="0" +KEYWORDS="~x86" + +DEPEND="$(qt_min_version 3.3) + || ( ( x11-libs/libX11 x11-libs/libXext ) virtual/x11 )" + +# media-video/dvd-slideshow-0.7.5 not in portage +RDEPEND="${DEPEND} + >=app-cdr/cdrtools-2.01 + >=app-cdr/dvd+rw-tools-5.21.4 + >=media-libs/netpbm-10.29 + >=media-libs/xine-lib-0.99.4 + >=media-sound/lame-3.97_beta2 + >=media-video/dvdauthor-0.6.11 + >=media-video/dvd-slideshow-0.7.5 + >=media-video/mjpegtools-1.8.0 + >=media-video/mplayer-1.0_pre8 + >=media-video/transcode-1.0.2" + + +src_compile() { + ${QTDIR}/bin/qmake mandvd.pro || die "qmake failed" + emake || die "emake failed" +} + +src_install () { + dobin ${PN} + newicon ${PN}ico.png ${PN}.png + make_desktop_entry ${PN} ${PN} ${PN}.png "AudioVideo;QT" +} |