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/hxd: ChangeLog hxd-0.70.02.ebuild
Date: Sun, 23 Aug 2009 04:31:50
Message-Id: E1Mf4k8-0004gj-3z@stork.gentoo.org
1 vostorga 09/08/23 04:31:48
2
3 Modified: ChangeLog
4 Added: hxd-0.70.02.ebuild
5 Log:
6 Version bump, Respecting CFLAGS, LDFLAGS and CC variable, Fixing pre-stripped files, Workaround for parallel make
7 (Portage version: 2.1.6.13/cvs/Linux i686)
8
9 Revision Changes Path
10 1.10 dev-util/hxd/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/hxd/ChangeLog?rev=1.10&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/hxd/ChangeLog?rev=1.10&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/hxd/ChangeLog?r1=1.9&r2=1.10
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/hxd/ChangeLog,v
19 retrieving revision 1.9
20 retrieving revision 1.10
21 diff -u -r1.9 -r1.10
22 --- ChangeLog 27 Dec 2008 05:46:19 -0000 1.9
23 +++ ChangeLog 23 Aug 2009 04:31:47 -0000 1.10
24 @@ -1,6 +1,14 @@
25 # ChangeLog for dev-util/hxd
26 -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/hxd/ChangeLog,v 1.9 2008/12/27 05:46:19 wormo Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-util/hxd/ChangeLog,v 1.10 2009/08/23 04:31:47 vostorga Exp $
30 +
31 +*hxd-0.70.02 (23 Aug 2009)
32 +
33 + 23 Aug 2009; VĂ­ctor Ostorga <vostorga@g.o> +hxd-0.70.02.ebuild:
34 + Version bump to 0.70.02
35 + Respecting CFLAGS, LDFLAGS and CC variable
36 + Fixing pre-stripped files
37 + Workaround for parallel make
38
39 27 Dec 2008; Stephanie Lockwood-Childs <wormo@g.o> hxd-0.70.ebuild:
40 add ~amd64 keyword, reporter Andrew Savchenko (bug #252644)
41
42
43
44 1.1 dev-util/hxd/hxd-0.70.02.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/hxd/hxd-0.70.02.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/hxd/hxd-0.70.02.ebuild?rev=1.1&content-type=text/plain
48
49 Index: hxd-0.70.02.ebuild
50 ===================================================================
51 # Copyright 1999-2009 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/dev-util/hxd/hxd-0.70.02.ebuild,v 1.1 2009/08/23 04:31:47 vostorga Exp $
54
55 inherit toolchain-funcs
56
57 DESCRIPTION="Binary to hexadecimal converter"
58 HOMEPAGE="http://www-tet.ee.tu-berlin.de/solyga/linux/"
59 SRC_URI="http://linux.xulin.de/c/${P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86 ~sparc ~mips ~ppc"
64 IUSE=""
65
66 DEPEND="virtual/libc"
67 RDEPEND="${DEPEND}"
68
69 src_unpack() {
70 unpack ${A}
71 cd "${S}"
72 #Respect FLAGS and avoid stripping
73 sed -i -e "/^CFLAGS/s|=|+=|" \
74 -e "/^LDFLAGS/s|=|+=|" \
75 -e "/^LDFLAGS/s|-s||" \
76 -e "s/install -s/install/" \
77 Makefile.Linux || die "sed failed"
78 }
79
80 src_compile() {
81 econf || die
82 emake CC="$(tc-getCC)" -j1 || die "make failed"
83 }
84
85 src_install() {
86 dobin hxd unhxd
87 doman hxd.1 unhxd.1
88 dodoc README TODO
89 }