Gentoo Archives: gentoo-commits

From: "Steve Dibb (beandog)" <beandog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-video/tivodecode: metadata.xml ChangeLog tivodecode-0.2_pre4.ebuild
Date: Fri, 30 Jan 2009 11:43:11
Message-Id: E1LSrm9-0004DG-38@stork.gentoo.org
1 beandog 09/01/30 11:43:09
2
3 Added: metadata.xml ChangeLog tivodecode-0.2_pre4.ebuild
4 Log:
5 Initial commit; Thanks to Douglas Mayle for original ebuild; bug 256863
6 (Portage version: 2.2_rc23/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 media-video/tivodecode/metadata.xml
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/tivodecode/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/tivodecode/metadata.xml?rev=1.1&content-type=text/plain
13
14 Index: metadata.xml
15 ===================================================================
16 <?xml version="1.0" encoding="UTF-8"?>
17 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
18 <pkgmetadata>
19 <herd>media-video</herd>
20 <longdescription lang="en">
21 This software converts a .TiVo file (produced by the TiVoToGo functionality on recent TiVo software releases, or from files downloaded through the web interface) to a normal MPEG file.
22 </longdescription>
23 </pkgmetadata>
24
25
26
27 1.1 media-video/tivodecode/ChangeLog
28
29 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/tivodecode/ChangeLog?rev=1.1&view=markup
30 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/tivodecode/ChangeLog?rev=1.1&content-type=text/plain
31
32 Index: ChangeLog
33 ===================================================================
34 # ChangeLog for media-video/tivodecode
35 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
36 # $Header: /var/cvsroot/gentoo-x86/media-video/tivodecode/ChangeLog,v 1.1 2009/01/30 11:43:08 beandog Exp $
37
38 *tivodecode-0.2_pre4 (30 Jan 2009)
39
40 30 Jan 2009; Steve Dibb <beandog@g.o> +metadata.xml,
41 +tivodecode-0.2_pre4.ebuild:
42 Initial commit; Thanks to Douglas Mayle for original ebuild; bug 256863
43
44
45
46
47 1.1 media-video/tivodecode/tivodecode-0.2_pre4.ebuild
48
49 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/tivodecode/tivodecode-0.2_pre4.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/tivodecode/tivodecode-0.2_pre4.ebuild?rev=1.1&content-type=text/plain
51
52 Index: tivodecode-0.2_pre4.ebuild
53 ===================================================================
54 # Copyright 1999-2009 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/media-video/tivodecode/tivodecode-0.2_pre4.ebuild,v 1.1 2009/01/30 11:43:08 beandog Exp $
57
58 inherit eutils versionator
59
60 MY_PV="$(delete_version_separator '_')"
61
62 DESCRIPTION="TiVo File Decoder"
63 HOMEPAGE="http://tivodecode.sourceforge.net/"
64 SRC_URI="mirror://sourceforge/${PN}/${PN}-${MY_PV}.tar.gz"
65 LICENSE="BSD"
66
67 SLOT="0"
68 KEYWORDS="~amd64"
69 IUSE=""
70 DEPEND=""
71 RDEPEND="${DEPEND}"
72
73 S="${WORKDIR}/${PN}-${MY_PV}"
74
75 src_install() {
76 emake DESTDIR="${D}" install || die "emake install failed"
77 dodoc README ChangeLog
78 }