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-arch/arc: ChangeLog arc-5.21p.ebuild
Date: Tue, 05 Oct 2010 04:52:57
Message-Id: 20101005045253.ECFC120051@flycatcher.gentoo.org
1 jer 10/10/05 04:52:53
2
3 Modified: ChangeLog
4 Added: arc-5.21p.ebuild
5 Log:
6 Version bump thanks to Mario Fetka (geos_one, bug #339721). Remove empty DEPEND. Merge epatch calls. Make sed die.
7
8 (Portage version: 2.2_rc88/cvs/Linux i686)
9
10 Revision Changes Path
11 1.36 app-arch/arc/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/arc/ChangeLog?rev=1.36&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/arc/ChangeLog?rev=1.36&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/arc/ChangeLog?r1=1.35&r2=1.36
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-arch/arc/ChangeLog,v
20 retrieving revision 1.35
21 retrieving revision 1.36
22 diff -u -r1.35 -r1.36
23 --- ChangeLog 17 Feb 2010 06:50:49 -0000 1.35
24 +++ ChangeLog 5 Oct 2010 04:52:53 -0000 1.36
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-arch/arc
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-arch/arc/ChangeLog,v 1.35 2010/02/17 06:50:49 abcd Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-arch/arc/ChangeLog,v 1.36 2010/10/05 04:52:53 jer Exp $
30 +
31 +*arc-5.21p (05 Oct 2010)
32 +
33 + 05 Oct 2010; Jeroen Roovers <jer@g.o> +arc-5.21p.ebuild:
34 + Version bump thanks to Mario Fetka (geos_one, bug #339721). Remove empty
35 + DEPEND. Merge epatch calls. Make sed die.
36
37 17 Feb 2010; Jonathan Callen <abcd@g.o>
38 +files/arc-5.21m-darwin.patch, arc-5.21o.ebuild,
39
40
41
42 1.1 app-arch/arc/arc-5.21p.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/arc/arc-5.21p.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/arc/arc-5.21p.ebuild?rev=1.1&content-type=text/plain
46
47 Index: arc-5.21p.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/app-arch/arc/arc-5.21p.ebuild,v 1.1 2010/10/05 04:52:53 jer Exp $
52
53 EAPI="2"
54
55 inherit eutils toolchain-funcs
56
57 DESCRIPTION="Create & extract files from DOS .ARC files"
58 HOMEPAGE="http://arc.sourceforge.net"
59 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
64 IUSE=""
65
66 src_prepare() {
67 epatch "${FILESDIR}"/${P/p/m}-darwin.patch \
68 "${FILESDIR}"/${P/p/m}-gentoo-fbsd.patch \
69 "${FILESDIR}"/${P/p/o}-interix.patch
70 sed -i Makefile \
71 -e 's/CFLAGS = $(OPT) $(SYSTEM)/CFLAGS += $(SYSTEM)/' \
72 || die "sed Makefile"
73 }
74
75 src_compile() {
76 emake CC="$(tc-getCC)" OPT="${LDFLAGS}" || die "emake failed."
77 }
78
79 src_install() {
80 dobin arc marc
81 doman arc.1
82 dodoc Arc521.doc Arcinfo Changelog Readme
83 }