Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-misc/tprint: ChangeLog tprint-1.1.0-r1.ebuild
Date: Tue, 28 Sep 2010 19:41:34
Message-Id: 20100928194129.8E32720051@flycatcher.gentoo.org
1 jer 10/09/28 19:41:29
2
3 Modified: ChangeLog
4 Added: tprint-1.1.0-r1.ebuild
5 Log:
6 Respect LDFLAGS (bug #337306), more CFLAGS. Do not hard-wire env var values in Makefile.
7
8 (Portage version: 2.2_rc86/cvs/Linux i686)
9
10 Revision Changes Path
11 1.7 app-misc/tprint/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/tprint/ChangeLog?rev=1.7&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/tprint/ChangeLog?rev=1.7&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/tprint/ChangeLog?r1=1.6&r2=1.7
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-misc/tprint/ChangeLog,v
20 retrieving revision 1.6
21 retrieving revision 1.7
22 diff -u -r1.6 -r1.7
23 --- ChangeLog 30 Dec 2008 20:31:38 -0000 1.6
24 +++ ChangeLog 28 Sep 2010 19:41:29 -0000 1.7
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-misc/tprint
27 -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-misc/tprint/ChangeLog,v 1.6 2008/12/30 20:31:38 angelos Exp $
29 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-misc/tprint/ChangeLog,v 1.7 2010/09/28 19:41:29 jer Exp $
31 +
32 +*tprint-1.1.0-r1 (28 Sep 2010)
33 +
34 + 28 Sep 2010; Jeroen Roovers <jer@g.o> +tprint-1.1.0-r1.ebuild:
35 + Respect LDFLAGS (bug #337306), more CFLAGS. Do not hard-wire env var
36 + values in Makefile.
37
38 30 Dec 2008; Christoph Mende <angelos@g.o> tprint-1.1.0.ebuild:
39 QA: Respect CC (bug 243680)
40
41
42
43 1.1 app-misc/tprint/tprint-1.1.0-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/tprint/tprint-1.1.0-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/tprint/tprint-1.1.0-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: tprint-1.1.0-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-misc/tprint/tprint-1.1.0-r1.ebuild,v 1.1 2010/09/28 19:41:29 jer Exp $
53
54 EAPI="2"
55
56 inherit toolchain-funcs
57
58 DESCRIPTION="Transparent Print Utility for terminals"
59 HOMEPAGE="http://sourceforge.net/projects/tprint/"
60 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~ppc ~x86"
65 IUSE=""
66
67 src_prepare() {
68 sed -i Makefile \
69 -e 's:cc:$(CC):g' \
70 -e 's:-g -O2:$(CFLAGS) $(LDFLAGS):g' \
71 || die "sed failed"
72 }
73
74 src_compile() {
75 emake CC=$(tc-getCC) || die "emake failed"
76 }
77
78 src_install() {
79 dodir /etc/tprint
80 insinto /etc/tprint
81 doins tprint.conf
82 exeinto /usr/bin
83 doexe tprint || die "doexe failed"
84
85 dodoc INSTALL README
86 }