Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/dvda-author: ChangeLog dvda-author-10.06.ebuild dvda-author-09.05.ebuild
Date: Mon, 30 Aug 2010 23:27:13
Message-Id: 20100830232707.0080520051@flycatcher.gentoo.org
1 radhermit 10/08/30 23:27:06
2
3 Modified: ChangeLog
4 Added: dvda-author-10.06.ebuild
5 Removed: dvda-author-09.05.ebuild
6 Log:
7 Version bump for bug #333121. Remove old, broken version; closes bugs #321203 and #321829.
8
9 (Portage version: 2.2_rc71/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.7 media-sound/dvda-author/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/dvda-author/ChangeLog?rev=1.7&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/dvda-author/ChangeLog?rev=1.7&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/dvda-author/ChangeLog?r1=1.6&r2=1.7
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/media-sound/dvda-author/ChangeLog,v
21 retrieving revision 1.6
22 retrieving revision 1.7
23 diff -u -r1.6 -r1.7
24 --- ChangeLog 17 Aug 2009 12:00:22 -0000 1.6
25 +++ ChangeLog 30 Aug 2010 23:27:06 -0000 1.7
26 @@ -1,6 +1,13 @@
27 # ChangeLog for media-sound/dvda-author
28 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/media-sound/dvda-author/ChangeLog,v 1.6 2009/08/17 12:00:22 ssuominen Exp $
30 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/media-sound/dvda-author/ChangeLog,v 1.7 2010/08/30 23:27:06 radhermit Exp $
32 +
33 +*dvda-author-10.06 (30 Aug 2010)
34 +
35 + 30 Aug 2010; Tim Harder <radhermit@g.o> -dvda-author-09.05.ebuild,
36 + -files/dvda-author-09.05-sandbox.patch, +dvda-author-10.06.ebuild:
37 + Version bump for bug #333121. Remove old, broken version; closes bugs
38 + #321203 and #321829.
39
40 17 Aug 2009; Samuli Suominen <ssuominen@g.o>
41 dvda-author-09.05.ebuild:
42
43
44
45 1.1 media-sound/dvda-author/dvda-author-10.06.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/dvda-author/dvda-author-10.06.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/dvda-author/dvda-author-10.06.ebuild?rev=1.1&content-type=text/plain
49
50 Index: dvda-author-10.06.ebuild
51 ===================================================================
52 # Copyright 1999-2010 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/media-sound/dvda-author/dvda-author-10.06.ebuild,v 1.1 2010/08/30 23:27:06 radhermit Exp $
55
56 EAPI=2
57
58 inherit eutils
59
60 DESCRIPTION="Author a DVD-Audio DVD"
61 HOMEPAGE="http://dvd-audio.sourceforge.net"
62 SRC_URI="mirror://sourceforge/dvd-audio/${P}-300.tar.gz"
63
64 LICENSE="GPL-3"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86"
67 IUSE="debug"
68
69 RDEPEND=">=media-sound/sox-14.1[png]
70 >=media-libs/flac-1.2.1[ogg]"
71 DEPEND="${RDEPEND}
72 >=sys-devel/libtool-2"
73
74 src_prepare() {
75 # Fix parallel make
76 sed -i -e 's:^\(\tcd ${MAYBE_CDRTOOLS}\):@HAVE_CDRTOOLS_BUILD_TRUE@\1:' \
77 Makefile.in || die "sed failed"
78
79 # Don't pre-strip binaries
80 sed -i -e 's:$LIBS -s:$LIBS:' configure || die "sed failed"
81 }
82
83 src_configure() {
84 econf \
85 --disable-dependency-tracking \
86 --with-config=/etc \
87 $(use_with debug debug full)
88 }
89
90 src_install() {
91 newbin src/dvda ${PN} || die "newbin failed"
92 insinto /etc
93 doins ${PN}.conf || die "doins failed"
94 dodoc AUTHORS BUGS ChangeLog EXAMPLES HOWTO.conf LIMITATIONS NEWS TODO \
95 || die "dodoc failed"
96 }