diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2014-07-29 17:16:42 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2014-07-29 17:16:42 +0000 |
commit | f7cc61e06f723ef856e7fea7388e0971cc5167dd (patch) | |
tree | ed0daa5e7f64ba802c0a4e6ac18a058b329ca74a /media-video | |
parent | Version bump. (diff) | |
download | gentoo-2-f7cc61e06f723ef856e7fea7388e0971cc5167dd.tar.gz gentoo-2-f7cc61e06f723ef856e7fea7388e0971cc5167dd.tar.bz2 gentoo-2-f7cc61e06f723ef856e7fea7388e0971cc5167dd.zip |
Version bump wrt #498904 by Paolo Pedroni. Pull in recent enough virtual/ffmpeg wrt #495088 by Cecil Curry.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/dvdstyler/ChangeLog | 10 | ||||
-rw-r--r-- | media-video/dvdstyler/dvdstyler-2.7.2.ebuild | 65 |
2 files changed, 73 insertions, 2 deletions
diff --git a/media-video/dvdstyler/ChangeLog b/media-video/dvdstyler/ChangeLog index 79364c275da7..b33bd3eccf27 100644 --- a/media-video/dvdstyler/ChangeLog +++ b/media-video/dvdstyler/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-video/dvdstyler -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/dvdstyler/ChangeLog,v 1.59 2013/08/12 16:30:13 aballier Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/dvdstyler/ChangeLog,v 1.60 2014/07/29 17:16:42 ssuominen Exp $ + +*dvdstyler-2.7.2 (29 Jul 2014) + + 29 Jul 2014; Samuli Suominen <ssuominen@gentoo.org> +dvdstyler-2.7.2.ebuild: + Version bump wrt #498904 by Paolo Pedroni. Pull in recent enough + virtual/ffmpeg wrt #495088 by Cecil Curry. *dvdstyler-2.5.1 (12 Aug 2013) diff --git a/media-video/dvdstyler/dvdstyler-2.7.2.ebuild b/media-video/dvdstyler/dvdstyler-2.7.2.ebuild new file mode 100644 index 000000000000..064f34695f91 --- /dev/null +++ b/media-video/dvdstyler/dvdstyler-2.7.2.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/dvdstyler/dvdstyler-2.7.2.ebuild,v 1.1 2014/07/29 17:16:42 ssuominen Exp $ + +EAPI=5 + +MY_P=${P/dvds/DVDS} +WX_GTK_VER=2.8 + +inherit wxwidgets + +DESCRIPTION="A cross-platform free DVD authoring application" +HOMEPAGE="http://www.dvdstyler.org/" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug +udev" + +COMMON_DEPEND=">=app-cdr/dvd+rw-tools-7.1 + media-libs/libexif:= + >=media-libs/wxsvg-1.2:= + >=media-video/dvdauthor-0.7.1 + >=media-video/xine-ui-0.99.7 + virtual/cdrtools + >=virtual/ffmpeg-9-r1[encode] + virtual/jpeg:0 + >=x11-libs/wxGTK-2.8.7:2.8=[gstreamer,X] + udev? ( >=virtual/libudev-215:= )" +RDEPEND="${COMMON_DEPEND} + >=app-cdr/dvdisaster-0.72.4" +DEPEND="${COMMON_DEPEND} + app-arch/zip + app-text/xmlto + sys-devel/gettext + virtual/yacc + virtual/pkgconfig" + +S=${WORKDIR}/${MY_P} + +src_prepare() { + # disable obsolete GNOME 2.x libraries wrt #508854 + sed -i -e '/PKG_CONFIG/s:libgnomeui-2.0:dIsAbLeAuToMaGiC&:' configure || die + # rmdir: failed to remove `tempfoobar': Directory not empty + sed -i -e '/rmdir "$$t"/d' docs/Makefile.in || die + # fix underlinking wrt #367863 + sed -i -e 's:@LIBS@:& -ljpeg:' wxVillaLib/Makefile.in || die + # silence desktop-file-validate QA check + sed -i \ + -e '/Icon/s:.png::' -e '/^Encoding/d' -e '/Categories/s:Application;::' \ + data/dvdstyler.desktop || die +} + +src_configure() { + econf \ + --docdir=/usr/share/doc/${PF} \ + $(use_enable debug) \ + --with-wx-config=${WX_CONFIG} +} + +src_install() { + default + rm -f "${ED}"/usr/share/doc/${PF}/{COPYING*,INSTALL*} +} |