Gentoo Archives: gentoo-commits

From: "Matthias Schwarzott (zzam)" <zzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-plugins/vdr-text2skin: vdr-text2skin-1.3.ebuild ChangeLog
Date: Thu, 08 Oct 2009 08:15:36
Message-Id: E1Mvo9u-0004uS-4b@stork.gentoo.org
1 zzam 09/10/08 08:15:34
2
3 Modified: ChangeLog
4 Added: vdr-text2skin-1.3.ebuild
5 Log:
6 Version bumped.
7 (Portage version: 2.2_rc43/cvs/Linux i686)
8
9 Revision Changes Path
10 1.7 media-plugins/vdr-text2skin/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/vdr-text2skin/ChangeLog?rev=1.7&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/vdr-text2skin/ChangeLog?rev=1.7&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/vdr-text2skin/ChangeLog?r1=1.6&r2=1.7
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-plugins/vdr-text2skin/ChangeLog,v
19 retrieving revision 1.6
20 retrieving revision 1.7
21 diff -u -r1.6 -r1.7
22 --- ChangeLog 9 Jun 2009 13:10:36 -0000 1.6
23 +++ ChangeLog 8 Oct 2009 08:15:33 -0000 1.7
24 @@ -1,6 +1,12 @@
25 # ChangeLog for media-plugins/vdr-text2skin
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-text2skin/ChangeLog,v 1.6 2009/06/09 13:10:36 zzam Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-text2skin/ChangeLog,v 1.7 2009/10/08 08:15:33 zzam Exp $
29 +
30 +*vdr-text2skin-1.3 (08 Oct 2009)
31 +
32 + 08 Oct 2009; Matthias Schwarzott <zzam@g.o>
33 + +vdr-text2skin-1.3.ebuild:
34 + Version bumped.
35
36 *vdr-text2skin-1.2 (09 Jun 2009)
37
38
39
40
41 1.1 media-plugins/vdr-text2skin/vdr-text2skin-1.3.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/vdr-text2skin/vdr-text2skin-1.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/vdr-text2skin/vdr-text2skin-1.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: vdr-text2skin-1.3.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-text2skin/vdr-text2skin-1.3.ebuild,v 1.1 2009/10/08 08:15:33 zzam Exp $
51
52 EAPI="2"
53
54 inherit vdr-plugin versionator
55
56 UPLOAD_NR=127 # changes with every version / new file :-(
57
58 DESCRIPTION="VDR text2skin PlugIn"
59 HOMEPAGE="http://projects.vdr-developer.org/projects/show/plg-text2skin"
60 SRC_URI="http://projects.vdr-developer.org/attachments/download/${UPLOAD_NR}/${P}.tgz"
61
62 SLOT="0"
63 LICENSE="GPL-2"
64 KEYWORDS="~x86"
65 #IUSE="truetype direct_blit"
66 IUSE="+truetype"
67
68 COMMON_DEPEND=">=media-video/vdr-1.6.0
69 media-gfx/imagemagick
70 !media-plugins/vdr-text2skin-cvs
71 truetype? ( media-libs/freetype )"
72
73 DEPEND="${COMMON_DEPEND}
74 dev-util/pkgconfig"
75
76 RDEPEND="${COMMON_DEPEND}"
77
78 SKINDIR=/usr/share/vdr/${VDRPLUGIN}
79 ETC_SKIN_DIR=/etc/vdr/plugins/${VDRPLUGIN}
80
81 src_prepare() {
82 sed -i common.c -e 's#cPlugin::ConfigDirectory(PLUGIN_NAME_I18N)#"/usr/share/vdr/"PLUGIN_NAME_I18N#'
83
84 use truetype || sed -i Makefile -e 's/^HAVE_FREETYPE/#HAVE_FREETYPE/'
85
86 vdr-plugin_src_prepare
87 }
88
89 src_install() {
90 vdr-plugin_src_install
91
92 keepdir "${SKINDIR}"
93
94 exeinto "${SKINDIR}/contrib"
95 doexe "${S}"/contrib/skin_to_*.pl
96 doexe "${S}"/contrib/transform.pl
97
98 dodoc "${S}"/Docs/*.txt
99 }