Gentoo Archives: gentoo-commits

From: "Victor Ostorga (vostorga)" <vostorga@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/biew: ChangeLog biew-5.7.0.ebuild
Date: Fri, 28 Aug 2009 20:16:01
Message-Id: E1Mg0wf-0004O6-Ca@stork.gentoo.org
1 vostorga 09/08/25 18:40:37
2
3 Modified: ChangeLog biew-5.7.0.ebuild
4 Log:
5 Respecting CC, LD, AR, RANLIB variables, bug #243972, Fixing pre-stripped files, bug #255833 , Fixing man page location bug #255835 , Respecting CFLAGS and LDFLAGS , Now builds in ~amd64 , thanks to Diego E.
6 (Portage version: 2.1.6.13/cvs/Linux i686)
7
8 Revision Changes Path
9 1.25 dev-util/biew/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/biew/ChangeLog?rev=1.25&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/biew/ChangeLog?rev=1.25&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/biew/ChangeLog?r1=1.24&r2=1.25
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-util/biew/ChangeLog,v
18 retrieving revision 1.24
19 retrieving revision 1.25
20 diff -u -r1.24 -r1.25
21 --- ChangeLog 26 Dec 2008 08:07:23 -0000 1.24
22 +++ ChangeLog 25 Aug 2009 18:40:37 -0000 1.25
23 @@ -1,6 +1,17 @@
24 # ChangeLog for dev-util/biew
25 -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-util/biew/ChangeLog,v 1.24 2008/12/26 08:07:23 wormo Exp $
27 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/dev-util/biew/ChangeLog,v 1.25 2009/08/25 18:40:37 vostorga Exp $
29 +
30 + 25 Aug 2009; Víctor Ostorga <vostorga@g.o> biew-5.7.0.ebuild,
31 + +files/biew-570-configure.patch, -files/biew-570-configure-gpm.patch,
32 + files/biew-570-makefile.patch:
33 + Respecting CC, LD, AR, RANLIB variables, bug #243972
34 + Fixing pre-stripped files, bug #255833
35 + Fixing man page location, patch thanks to Sandro Bonazzola and Wim Muskee
36 + bug #255835
37 + Respecting CFLAGS and LDFLAGS
38 + Now builds in ~amd64 , thanks to Diego E." Flameeyes" Pettenò
39 + <flameeyes@×××××.com>
40
41 *biew-5.7.0 (26 Dec 2008)
42
43
44
45
46 1.2 dev-util/biew/biew-5.7.0.ebuild
47
48 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/biew/biew-5.7.0.ebuild?rev=1.2&view=markup
49 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/biew/biew-5.7.0.ebuild?rev=1.2&content-type=text/plain
50 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/biew/biew-5.7.0.ebuild?r1=1.1&r2=1.2
51
52 Index: biew-5.7.0.ebuild
53 ===================================================================
54 RCS file: /var/cvsroot/gentoo-x86/dev-util/biew/biew-5.7.0.ebuild,v
55 retrieving revision 1.1
56 retrieving revision 1.2
57 diff -u -r1.1 -r1.2
58 --- biew-5.7.0.ebuild 26 Dec 2008 08:07:23 -0000 1.1
59 +++ biew-5.7.0.ebuild 25 Aug 2009 18:40:37 -0000 1.2
60 @@ -1,8 +1,8 @@
61 -# Copyright 1999-2008 Gentoo Foundation
62 +# Copyright 1999-2009 Gentoo Foundation
63 # Distributed under the terms of the GNU General Public License v2
64 -# $Header: /var/cvsroot/gentoo-x86/dev-util/biew/biew-5.7.0.ebuild,v 1.1 2008/12/26 08:07:23 wormo Exp $
65 +# $Header: /var/cvsroot/gentoo-x86/dev-util/biew/biew-5.7.0.ebuild,v 1.2 2009/08/25 18:40:37 vostorga Exp $
66
67 -inherit eutils
68 +inherit eutils toolchain-funcs flag-o-matic
69
70 DESCRIPTION="A portable viewer of binary files, hexadecimal and disassembler modes."
71 HOMEPAGE="http://biew.sourceforge.net"
72 @@ -27,7 +27,7 @@
73 src_unpack() {
74 unpack ${A}
75 cd "${S}"
76 - epatch "${FILESDIR}"/biew-570-configure-gpm.patch
77 + epatch "${FILESDIR}"/biew-570-configure.patch
78 epatch "${FILESDIR}"/biew-570-makefile.patch
79 }
80
81 @@ -41,8 +41,13 @@
82 fi
83 export _gpm=${enable_gpm}
84
85 - econf
86 - emake
87 + append-flags -D_GNU_SOURCE
88 +
89 + econf --cc="$(tc-getCC)" --ld="$(tc-getCC)" \
90 + --ar="$(tc-getAR) -rcu" --ranlib="$(tc-getRANLIB)" \
91 + --enable-debug
92 + emake HOST_CFLAGS="${CFLAGS}" HOST_LDFLAGS="${LDFLAGS}" \
93 + || die "make failed"
94 for i in doc/*.ru doc/file_id.diz doc/biew_ru.txt doc/biew_en.txt
95 do
96 if iconv -f cp866 -t utf-8 "$i" > "$i.conv"