Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-video/pgcedit: metadata.xml pgcedit-0.8.6.ebuild ChangeLog
Date: Mon, 31 Dec 2012 00:46:18
Message-Id: 20121231004607.58CE52171D@flycatcher.gentoo.org
1 vapier 12/12/31 00:46:07
2
3 Added: metadata.xml pgcedit-0.8.6.ebuild ChangeLog
4 Log:
5 Initial ebuild partially based on one in Sunrise #213937 by Juan Aguado.
6
7 (Portage version: 2.2.0_alpha144/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)
8
9 Revision Changes Path
10 1.1 media-video/pgcedit/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/pgcedit/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/pgcedit/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <maintainer>
21 <email>maintainer-needed@g.o</email>
22 </maintainer>
23 <use>
24 <flag name='video'>Add support for video preview</flag>
25 </use>
26 </pkgmetadata>
27
28
29
30 1.1 media-video/pgcedit/pgcedit-0.8.6.ebuild
31
32 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/pgcedit/pgcedit-0.8.6.ebuild?rev=1.1&view=markup
33 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/pgcedit/pgcedit-0.8.6.ebuild?rev=1.1&content-type=text/plain
34
35 Index: pgcedit-0.8.6.ebuild
36 ===================================================================
37 # Copyright 1999-2012 Gentoo Foundation
38 # Distributed under the terms of the GNU General Public License v2
39 # $Header: /var/cvsroot/gentoo-x86/media-video/pgcedit/pgcedit-0.8.6.ebuild,v 1.1 2012/12/31 00:46:07 vapier Exp $
40
41 EAPI="4"
42
43 inherit eutils versionator
44
45 MY_PN="PgcEdit"
46 MY_P="${MY_PN}_source_$(get_after_major_version)"
47 MY_PDOC="${MY_PN}_Manual_html"
48
49 DESCRIPTION="DVD IFO and Menu editor"
50 HOMEPAGE="http://download.videohelp.com/r0lZ/pgcedit/"
51 SRC_URI="http://download.videohelp.com/r0lZ/${PN}/versions/${MY_P}.zip
52 http://download.videohelp.com/r0lZ/${PN}/versions/${MY_PDOC}.zip"
53
54 LICENSE="GPL-2"
55 SLOT="0"
56 KEYWORDS="~amd64 ~x86"
57 IUSE="video"
58
59 RDEPEND="app-cdr/cdrtools
60 >=dev-lang/tcl-8.4
61 >=dev-lang/tk-8.4
62 video? ( app-emulation/wine )"
63 DEPEND="app-arch/unzip"
64
65 S=${WORKDIR}
66
67 src_prepare() {
68 epatch "${FILESDIR}"/${P}-config-paths.patch
69 sed -i "s:@DOCDIR@:/usr/share/doc/${PF}/html:" lib/main.tcl || die
70 # These are only used in Windows.
71 rm bin/{mkisofs,pskill}.exe || die
72 use video || rm bin/PgcEditPreview.exe
73 }
74
75 src_install() {
76 newbin ${MY_PN}_main.tcl ${PN}
77
78 keepdir /usr/share/${PN}/plugins
79 insinto /usr/share/${PN}
80 doins -r bin lib
81 dohtml -r doc/*
82
83 doicon "${FILESDIR}"/${PN}.png
84 make_desktop_entry ${PN} ${MY_PN} ${PN} "AudioVideo;Video;"
85
86 dodoc HISTORY.txt TODO.txt
87 }
88
89
90
91 1.1 media-video/pgcedit/ChangeLog
92
93 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/pgcedit/ChangeLog?rev=1.1&view=markup
94 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/pgcedit/ChangeLog?rev=1.1&content-type=text/plain
95
96 Index: ChangeLog
97 ===================================================================
98 # ChangeLog for media-video/pgcedit
99 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
100 # $Header: /var/cvsroot/gentoo-x86/media-video/pgcedit/ChangeLog,v 1.1 2012/12/31 00:46:07 vapier Exp $
101
102 *pgcedit-0.8.6 (31 Dec 2012)
103
104 31 Dec 2012; Mike Frysinger <vapier@g.o>
105 +files/pgcedit-0.8.6-config-paths.patch, +files/pgcedit.png, +metadata.xml,
106 +pgcedit-0.8.6.ebuild:
107 Initial ebuild partially based on one in Sunrise #213937 by Juan Aguado.