Gentoo Archives: gentoo-commits

From: "Ulrich Mueller (ulm)" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-tex/hyphen_show: ChangeLog hyphen_show-20000425.ebuild
Date: Sat, 04 Sep 2010 17:41:59
Message-Id: 20100904174154.50B0C20051@flycatcher.gentoo.org
1 ulm 10/09/04 17:41:54
2
3 Modified: ChangeLog hyphen_show-20000425.ebuild
4 Log:
5 Respect LDFLAGS, bug 335988.
6
7 (Portage version: 2.2_rc71/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.9 dev-tex/hyphen_show/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/hyphen_show/ChangeLog?rev=1.9&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/hyphen_show/ChangeLog?rev=1.9&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/hyphen_show/ChangeLog?r1=1.8&r2=1.9
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-tex/hyphen_show/ChangeLog,v
19 retrieving revision 1.8
20 retrieving revision 1.9
21 diff -u -r1.8 -r1.9
22 --- ChangeLog 19 Sep 2008 01:12:16 -0000 1.8
23 +++ ChangeLog 4 Sep 2010 17:41:54 -0000 1.9
24 @@ -1,6 +1,9 @@
25 # ChangeLog for dev-tex/hyphen_show
26 -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/hyphen_show/ChangeLog,v 1.8 2008/09/19 01:12:16 ranger Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-tex/hyphen_show/ChangeLog,v 1.9 2010/09/04 17:41:54 ulm Exp $
30 +
31 + 04 Sep 2010; Ulrich Mueller <ulm@g.o> hyphen_show-20000425.ebuild:
32 + Respect LDFLAGS, bug 335988.
33
34 19 Sep 2008; Brent Baude <ranger@g.o> hyphen_show-20000425.ebuild:
35 Marking hyphen_show-20000425 ~ppc64 for bug 237447
36 @@ -30,4 +33,4 @@
37 +hyphen_show-20000425.ebuild, +files/hyphen_show-gcc34.patch:
38 New package. Reported on bug #107419; ebuild and patch submitted by Ulrich
39 Mueller.
40 -
41 +
42
43
44
45 1.6 dev-tex/hyphen_show/hyphen_show-20000425.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/hyphen_show/hyphen_show-20000425.ebuild?rev=1.6&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/hyphen_show/hyphen_show-20000425.ebuild?rev=1.6&content-type=text/plain
49 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/hyphen_show/hyphen_show-20000425.ebuild?r1=1.5&r2=1.6
50
51 Index: hyphen_show-20000425.ebuild
52 ===================================================================
53 RCS file: /var/cvsroot/gentoo-x86/dev-tex/hyphen_show/hyphen_show-20000425.ebuild,v
54 retrieving revision 1.5
55 retrieving revision 1.6
56 diff -u -r1.5 -r1.6
57 --- hyphen_show-20000425.ebuild 19 Sep 2008 01:12:16 -0000 1.5
58 +++ hyphen_show-20000425.ebuild 4 Sep 2010 17:41:54 -0000 1.6
59 @@ -1,6 +1,6 @@
60 -# Copyright 1999-2008 Gentoo Foundation
61 +# Copyright 1999-2010 Gentoo Foundation
62 # Distributed under the terms of the GNU General Public License v2
63 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/hyphen_show/hyphen_show-20000425.ebuild,v 1.5 2008/09/19 01:12:16 ranger Exp $
64 +# $Header: /var/cvsroot/gentoo-x86/dev-tex/hyphen_show/hyphen_show-20000425.ebuild,v 1.6 2010/09/04 17:41:54 ulm Exp $
65
66 inherit eutils toolchain-funcs
67
68 @@ -13,7 +13,7 @@
69 SLOT="0"
70 KEYWORDS="amd64 ~ppc64 x86"
71 IUSE=""
72 -DEPEND=""
73 +
74 S=${WORKDIR}/${MY_PN}-${PV}
75
76 src_unpack() {
77 @@ -22,12 +22,11 @@
78 }
79
80 src_compile() {
81 - $(tc-getCC) ${CFLAGS} hyphen_show.c \
82 - -o hyphen_show || die "Compilation failed"
83 + $(tc-getCC) ${CFLAGS} ${LDFLAGS} hyphen_show.c -o hyphen_show || die
84 }
85
86 src_install() {
87 - dobin hyphen_show
88 - doman hyphen_show.1
89 - dodoc README.hyphen_show
90 + dobin hyphen_show || die
91 + doman hyphen_show.1 || die
92 + dodoc README.hyphen_show || die
93 }