Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-print/ink: ChangeLog ink-0.4.1.ebuild
Date: Tue, 02 Jun 2009 13:20:25
Message-Id: E1MBTue-0006xg-LW@stork.gentoo.org
1 flameeyes 09/06/02 13:20:20
2
3 Modified: ChangeLog ink-0.4.1.ebuild
4 Log:
5 Add patch to build with --as-needed by Kevin Pyle, closes bug #248163.
6 (Portage version: 2.2_rc33/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.12 net-print/ink/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-print/ink/ChangeLog?rev=1.12&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-print/ink/ChangeLog?rev=1.12&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-print/ink/ChangeLog?r1=1.11&r2=1.12
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/net-print/ink/ChangeLog,v
18 retrieving revision 1.11
19 retrieving revision 1.12
20 diff -u -r1.11 -r1.12
21 --- ChangeLog 19 Jun 2007 07:34:24 -0000 1.11
22 +++ ChangeLog 2 Jun 2009 13:20:20 -0000 1.12
23 @@ -1,6 +1,10 @@
24 # ChangeLog for net-print/ink
25 -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/net-print/ink/ChangeLog,v 1.11 2007/06/19 07:34:24 genstef Exp $
27 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/net-print/ink/ChangeLog,v 1.12 2009/06/02 13:20:20 flameeyes Exp $
29 +
30 + 02 Jun 2009; Diego E. Pettenò <flameeyes@g.o> ink-0.4.1.ebuild,
31 + +files/ink-0.4.1-asneeded.patch:
32 + Add patch to build with --as-needed by Kevin Pyle, closes bug #248163.
33
34 *ink-0.4.1 (19 Jun 2007)
35
36
37
38
39 1.2 net-print/ink/ink-0.4.1.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-print/ink/ink-0.4.1.ebuild?rev=1.2&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-print/ink/ink-0.4.1.ebuild?rev=1.2&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-print/ink/ink-0.4.1.ebuild?r1=1.1&r2=1.2
44
45 Index: ink-0.4.1.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/net-print/ink/ink-0.4.1.ebuild,v
48 retrieving revision 1.1
49 retrieving revision 1.2
50 diff -u -r1.1 -r1.2
51 --- ink-0.4.1.ebuild 19 Jun 2007 07:34:24 -0000 1.1
52 +++ ink-0.4.1.ebuild 2 Jun 2009 13:20:20 -0000 1.2
53 @@ -1,6 +1,8 @@
54 -# Copyright 1999-2007 Gentoo Foundation
55 +# Copyright 1999-2009 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/net-print/ink/ink-0.4.1.ebuild,v 1.1 2007/06/19 07:34:24 genstef Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/net-print/ink/ink-0.4.1.ebuild,v 1.2 2009/06/02 13:20:20 flameeyes Exp $
59 +
60 +inherit eutils
61
62 DESCRIPTION="A command line utility to display the ink level of your printer"
63 SRC_URI="mirror://sourceforge/ink/${P/_}.tar.gz"
64 @@ -14,7 +16,14 @@
65 DEPEND=">=net-print/libinklevel-0.7.1"
66 RDEPEND="${DEPEND}"
67
68 +src_unpack() {
69 + unpack ${A}
70 + cd "${S}"
71 +
72 + epatch "${FILESDIR}"/${P}-asneeded.patch
73 +}
74 +
75 src_install () {
76 - emake DESTDIR=${D}/usr install || die "emake install failed"
77 - dodoc README
78 + emake DESTDIR="${D}"/usr install || die "emake install failed"
79 + dodoc README || die
80 }