Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-print/foomatic-db-engine: ChangeLog foomatic-db-engine-4.0.7.ebuild foomatic-db-engine-3.0.20070508.ebuild foomatic-db-engine-3.0.20080507.ebuild foomatic-db-engine-4.0.3.ebuild
Date: Fri, 06 May 2011 16:03:42
Message-Id: 20110506160331.7DE8E20054@flycatcher.gentoo.org
1 jlec 11/05/06 16:03:31
2
3 Modified: ChangeLog
4 Added: foomatic-db-engine-4.0.7.ebuild
5 Removed: foomatic-db-engine-3.0.20070508.ebuild
6 foomatic-db-engine-3.0.20080507.ebuild
7 foomatic-db-engine-4.0.3.ebuild
8 Log:
9 Non-maintainer Version Bump, notified by euscan
10
11 (Portage version: 2.2.0_alpha31/cvs/Linux x86_64)
12
13 Revision Changes Path
14 1.46 net-print/foomatic-db-engine/ChangeLog
15
16 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/foomatic-db-engine/ChangeLog?rev=1.46&view=markup
17 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/foomatic-db-engine/ChangeLog?rev=1.46&content-type=text/plain
18 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/foomatic-db-engine/ChangeLog?r1=1.45&r2=1.46
19
20 Index: ChangeLog
21 ===================================================================
22 RCS file: /var/cvsroot/gentoo-x86/net-print/foomatic-db-engine/ChangeLog,v
23 retrieving revision 1.45
24 retrieving revision 1.46
25 diff -u -r1.45 -r1.46
26 --- ChangeLog 17 May 2010 20:33:42 -0000 1.45
27 +++ ChangeLog 6 May 2011 16:03:31 -0000 1.46
28 @@ -1,6 +1,14 @@
29 # ChangeLog for net-print/foomatic-db-engine
30 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
31 -# $Header: /var/cvsroot/gentoo-x86/net-print/foomatic-db-engine/ChangeLog,v 1.45 2010/05/17 20:33:42 jlec Exp $
32 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
33 +# $Header: /var/cvsroot/gentoo-x86/net-print/foomatic-db-engine/ChangeLog,v 1.46 2011/05/06 16:03:31 jlec Exp $
34 +
35 +*foomatic-db-engine-4.0.7 (06 May 2011)
36 +
37 + 06 May 2011; Justin Lecher <jlec@g.o> +files/4.0.7-perl-module.patch,
38 + -foomatic-db-engine-3.0.20070508.ebuild,
39 + -foomatic-db-engine-3.0.20080507.ebuild, -foomatic-db-engine-4.0.3.ebuild,
40 + +foomatic-db-engine-4.0.7.ebuild, +files/4.0.7-respect-ldflag.patch:
41 + Non-maintainer Version Bump, notified by euscan
42
43 *foomatic-db-engine-4.0.4 (17 May 2010)
44
45
46
47
48 1.1 net-print/foomatic-db-engine/foomatic-db-engine-4.0.7.ebuild
49
50 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/foomatic-db-engine/foomatic-db-engine-4.0.7.ebuild?rev=1.1&view=markup
51 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/foomatic-db-engine/foomatic-db-engine-4.0.7.ebuild?rev=1.1&content-type=text/plain
52
53 Index: foomatic-db-engine-4.0.7.ebuild
54 ===================================================================
55 # Copyright 1999-2011 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 # $Header: /var/cvsroot/gentoo-x86/net-print/foomatic-db-engine/foomatic-db-engine-4.0.7.ebuild,v 1.1 2011/05/06 16:03:31 jlec Exp $
58
59 EAPI="2"
60
61 inherit eutils perl-app versionator
62
63 DESCRIPTION="Generates ppds out of xml foomatic printer description files"
64 HOMEPAGE="http://www.linuxprinting.org/foomatic.html"
65 SRC_URI="http://www.linuxprinting.org/download/foomatic/${P}.tar.gz"
66
67 LICENSE="GPL-2"
68 SLOT="0"
69 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
70 IUSE=""
71
72 RDEPEND="
73 dev-libs/libxml2
74 net-print/foomatic-filters"
75 PDEPEND="net-print/foomatic-db"
76
77 src_prepare() {
78 epatch \
79 "${FILESDIR}"/${PV}-perl-module.patch \
80 "${FILESDIR}"/${PV}-respect-ldflag.patch
81 sed -i -e "s:@LIB_CUPS@:$(cups-config --serverbin):" "${S}"/Makefile.in
82 }
83
84 src_configure() {
85 default
86 emake defaults || die "emake defaults failed"
87
88 cd lib
89 perl-app_src_configure
90 }
91
92 src_compile() {
93 emake || die "emake failed"
94
95 cd lib
96 perl-app_src_compile
97 }
98
99 src_install() {
100 emake DESTDIR="${D}" install || die "emake install failed"
101
102 cd lib
103 perl-module_src_install
104 }
105
106 src_test() {
107 cd lib
108 perl-module_src_test
109 }