Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-video/dvdstyler: ChangeLog dvdstyler-2.1.ebuild
Date: Thu, 22 Dec 2011 21:21:47
Message-Id: 20111222212137.24B432004B@flycatcher.gentoo.org
1 ssuominen 11/12/22 21:21:37
2
3 Modified: ChangeLog
4 Added: dvdstyler-2.1.ebuild
5 Log:
6 Version bump. Missing -ljpeg (in wxVillaLib/ for imagjpg.cpp) wrt #367863 by Diego Elio Pettenò.
7
8 (Portage version: 2.2.0_alpha79/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.50 media-video/dvdstyler/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/dvdstyler/ChangeLog?rev=1.50&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/dvdstyler/ChangeLog?rev=1.50&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/dvdstyler/ChangeLog?r1=1.49&r2=1.50
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-video/dvdstyler/ChangeLog,v
20 retrieving revision 1.49
21 retrieving revision 1.50
22 diff -u -r1.49 -r1.50
23 --- ChangeLog 16 Oct 2011 12:22:03 -0000 1.49
24 +++ ChangeLog 22 Dec 2011 21:21:36 -0000 1.50
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-video/dvdstyler
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-video/dvdstyler/ChangeLog,v 1.49 2011/10/16 12:22:03 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-video/dvdstyler/ChangeLog,v 1.50 2011/12/22 21:21:36 ssuominen Exp $
30 +
31 +*dvdstyler-2.1 (22 Dec 2011)
32 +
33 + 22 Dec 2011; Samuli Suominen <ssuominen@g.o> +dvdstyler-2.1.ebuild:
34 + Version bump. Missing -ljpeg (in wxVillaLib/ for imagjpg.cpp) wrt #367863 by
35 + Diego Elio Pettenò.
36
37 *dvdstyler-2.0_rc2 (16 Oct 2011)
38
39
40
41
42 1.1 media-video/dvdstyler/dvdstyler-2.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/dvdstyler/dvdstyler-2.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/dvdstyler/dvdstyler-2.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: dvdstyler-2.1.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-video/dvdstyler/dvdstyler-2.1.ebuild,v 1.1 2011/12/22 21:21:37 ssuominen Exp $
52
53 EAPI=4
54
55 MY_P=${P/dvds/DVDS}
56 WX_GTK_VER=2.8
57
58 inherit wxwidgets
59
60 DESCRIPTION="A cross-platform free DVD authoring application"
61 HOMEPAGE="http://www.dvdstyler.de/"
62 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
63
64 LICENSE="GPL-2"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86"
67 IUSE="debug gnome kernel_linux"
68
69 COMMON_DEPEND=">=app-cdr/dvd+rw-tools-7.1
70 >=media-libs/libexif-0.6.16
71 >=media-libs/wxsvg-1.1.5
72 >=media-video/dvdauthor-0.7.0
73 >=media-video/xine-ui-0.99.1
74 virtual/cdrtools
75 >=virtual/ffmpeg-0.6.90[encode]
76 virtual/jpeg
77 x11-libs/wxGTK:2.8[gstreamer,X]
78 gnome? ( >=gnome-base/libgnomeui-2 )
79 kernel_linux? ( sys-fs/udev )"
80 RDEPEND="${COMMON_DEPEND}
81 >=app-cdr/dvdisaster-0.72.2"
82 DEPEND="${COMMON_DEPEND}
83 app-arch/zip
84 app-text/xmlto
85 dev-util/pkgconfig
86 sys-devel/gettext"
87
88 S=${WORKDIR}/${MY_P}
89
90 src_prepare() {
91 use gnome || sed -i -e '/PKG_CONFIG/s:libgnomeui-2.0:dIsAbLeAuToMaGiC&:' configure
92
93 # rmdir: failed to remove `tempfoobar': Directory not empty
94 sed -i -e '/rmdir "$$t"/d' docs/Makefile.in || die
95
96 sed -i -e 's:@LIBS@:& -ljpeg:' wxVillaLib/Makefile.in || die #367863
97 }
98
99 src_configure() {
100 econf \
101 --docdir=/usr/share/doc/${PF} \
102 $(use_enable debug) \
103 --with-wx-config=${WX_CONFIG}
104 }
105
106 src_install() {
107 default
108 rm -f "${ED}"usr/share/doc/${PF}/{COPYING*,INSTALL*}
109 }