Gentoo Archives: gentoo-commits

From: "Markos Chandras (hwoarang)" <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/radare: radare-1.5-r1.ebuild ChangeLog
Date: Thu, 24 Jun 2010 12:39:43
Message-Id: 20100624123939.CCF422CF47@corvid.gentoo.org
1 hwoarang 10/06/24 12:39:39
2
3 Modified: ChangeLog
4 Added: radare-1.5-r1.ebuild
5 Log:
6 Respect LDFLAGS, fix documentation installation wrt bug #296746
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.13 dev-util/radare/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/radare/ChangeLog?rev=1.13&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/radare/ChangeLog?rev=1.13&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/radare/ChangeLog?r1=1.12&r2=1.13
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/radare/ChangeLog,v
19 retrieving revision 1.12
20 retrieving revision 1.13
21 diff -u -r1.12 -r1.13
22 --- ChangeLog 18 Mar 2010 11:29:29 -0000 1.12
23 +++ ChangeLog 24 Jun 2010 12:39:39 -0000 1.13
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-util/radare
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/radare/ChangeLog,v 1.12 2010/03/18 11:29:29 deathwing00 Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-util/radare/ChangeLog,v 1.13 2010/06/24 12:39:39 hwoarang Exp $
30 +
31 +*radare-1.5-r1 (24 Jun 2010)
32 +
33 + 24 Jun 2010; Markos Chandras <hwoarang@g.o> +radare-1.5-r1.ebuild,
34 + +files/radare-1.5-ldflags.patch:
35 + Respect LDFLAGS, fix documentation installation wrt bug #296746
36
37 *radare-1.5 (14 Dec 2009)
38
39
40
41
42 1.1 dev-util/radare/radare-1.5-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/radare/radare-1.5-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/radare/radare-1.5-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: radare-1.5-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-util/radare/radare-1.5-r1.ebuild,v 1.1 2010/06/24 12:39:39 hwoarang Exp $
52
53 inherit eutils
54
55 DESCRIPTION="Advanced command line hexadecimail editor and more"
56 HOMEPAGE="http://www.radare.org"
57 SRC_URI="http://www.radare.org/get/radare-${PV}.tar.gz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~x86 ~amd64"
62 IUSE="gui lua vala"
63
64 DEPEND="sys-libs/readline
65 dev-lang/python
66 lua? ( dev-lang/lua )
67 vala? ( dev-lang/vala )
68 "
69 RDEPEND="${DEPEND}"
70
71 src_unpack() {
72 unpack ${A}
73 cd "${S}"
74 epatch "${FILESDIR}"/${P}-ldflags.patch
75 # fix documentation installation
76 sed -i "s:doc/${PN}:doc/${PF}:g" \
77 Makefile.acr global.h.acr src/Makefile.acr wscript dist/maemo/Makefile
78 }
79
80 src_compile() {
81 econf $(use_with gui) || die "configure failed"
82 emake -j1 || die "compile failed"
83 }
84
85 src_install() {
86 emake DESTDIR="${D}" install || die "install failed"
87 }