Gentoo Archives: gentoo-commits

From: "Torsten Veller (tove)" <tove@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-perl/PDF-API2: ChangeLog PDF-API2-2.16.ebuild
Date: Tue, 25 Jan 2011 12:19:29
Message-Id: 20110125121920.D6E7C20054@flycatcher.gentoo.org
1 tove 11/01/25 12:19:20
2
3 Modified: ChangeLog
4 Added: PDF-API2-2.16.ebuild
5 Log:
6 Version bump. Use system dejavu fonts
7
8 (Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.18 dev-perl/PDF-API2/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/PDF-API2/ChangeLog?rev=1.18&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/PDF-API2/ChangeLog?rev=1.18&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/PDF-API2/ChangeLog?r1=1.17&r2=1.18
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-perl/PDF-API2/ChangeLog,v
20 retrieving revision 1.17
21 retrieving revision 1.18
22 diff -u -r1.17 -r1.18
23 --- ChangeLog 7 Sep 2009 08:40:25 -0000 1.17
24 +++ ChangeLog 25 Jan 2011 12:19:20 -0000 1.18
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-perl/PDF-API2
27 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/PDF-API2/ChangeLog,v 1.17 2009/09/07 08:40:25 tove Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/PDF-API2/ChangeLog,v 1.18 2011/01/25 12:19:20 tove Exp $
31 +
32 +*PDF-API2-2.16 (25 Jan 2011)
33 +
34 + 25 Jan 2011; Torsten Veller <tove@g.o> +PDF-API2-2.16.ebuild:
35 + Version bump. Use system dejavu fonts
36
37 07 Sep 2009; Torsten Veller <tove@g.o> -PDF-API2-0.65.ebuild:
38 Cleanup
39
40
41
42 1.1 dev-perl/PDF-API2/PDF-API2-2.16.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/PDF-API2/PDF-API2-2.16.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/PDF-API2/PDF-API2-2.16.ebuild?rev=1.1&content-type=text/plain
46
47 Index: PDF-API2-2.16.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/dev-perl/PDF-API2/PDF-API2-2.16.ebuild,v 1.1 2011/01/25 12:19:20 tove Exp $
52
53 EAPI=3
54
55 MODULE_AUTHOR=SSIMMS
56 MODULE_VERSION=2.016
57 inherit perl-module
58
59 DESCRIPTION="Facilitates the creation and modification of PDF files"
60
61 LICENSE="LGPL-2.1"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
64 IUSE=""
65
66 RDEPEND="virtual/perl-IO-Compress
67 dev-perl/Font-TTF
68 media-fonts/dejavu"
69 DEPEND="${RDEPEND}"
70
71 SRC_TEST="do"
72
73 src_install() {
74 perl-module_src_install
75 rm -rf "${D}/${VENDOR_LIB}/PDF/API2/fonts" || die
76 ln -s /usr/share/fonts/dejavu "${D}/${VENDOR_LIB}/PDF/API2/fonts" || die
77 }
78
79 pkg_postinst() {
80 if [[ ! -h ${ROOT}${VENDOR_LIB}/PDF/API2/fonts ]] ; then
81 einfo "Creating symlink ${ROOT}${VENDOR_LIB}/PDF/API2/fonts"
82 ln -s /usr/share/fonts/dejavu "${ROOT}${VENDOR_LIB}/PDF/API2/fonts"
83 fi
84 }