Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emulation/hercules: ChangeLog hercules-3.07.ebuild
Date: Mon, 30 Aug 2010 04:25:38
Message-Id: 20100830042533.929A120051@flycatcher.gentoo.org
1 vapier 10/08/30 04:25:33
2
3 Modified: ChangeLog
4 Added: hercules-3.07.ebuild
5 Log:
6 Version bump #308823 by Jay Maynard.
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.28 app-emulation/hercules/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/hercules/ChangeLog?rev=1.28&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/hercules/ChangeLog?rev=1.28&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/hercules/ChangeLog?r1=1.27&r2=1.28
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-emulation/hercules/ChangeLog,v
19 retrieving revision 1.27
20 retrieving revision 1.28
21 diff -u -r1.27 -r1.28
22 --- ChangeLog 10 Aug 2009 12:00:17 -0000 1.27
23 +++ ChangeLog 30 Aug 2010 04:25:33 -0000 1.28
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-emulation/hercules
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/hercules/ChangeLog,v 1.27 2009/08/10 12:00:17 ssuominen Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/hercules/ChangeLog,v 1.28 2010/08/30 04:25:33 vapier Exp $
30 +
31 +*hercules-3.07 (30 Aug 2010)
32 +
33 + 30 Aug 2010; Mike Frysinger <vapier@g.o> +hercules-3.07.ebuild:
34 + Version bump #308823 by Jay Maynard.
35
36 10 Aug 2009; Samuli Suominen <ssuominen@g.o> hercules-3.06.ebuild,
37 +files/hercules-3.06-gcc44.patch:
38
39
40
41 1.1 app-emulation/hercules/hercules-3.07.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/hercules/hercules-3.07.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/hercules/hercules-3.07.ebuild?rev=1.1&content-type=text/plain
45
46 Index: hercules-3.07.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-emulation/hercules/hercules-3.07.ebuild,v 1.1 2010/08/30 04:25:33 vapier Exp $
51
52 inherit eutils flag-o-matic
53
54 DESCRIPTION="Hercules System/370, ESA/390 and zArchitecture Mainframe Emulator"
55 HOMEPAGE="http://www.hercules-390.org/"
56 SRC_URI="http://www.hercules-390.org/${P}.tar.gz"
57
58 LICENSE="QPL-1.0"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
61 IUSE="custom-cflags"
62
63 src_unpack() {
64 unpack ${A}
65 cd "${S}"
66 sed -i \
67 -e 's:@modexecdir@:$(libdir)/$(PACKAGE):' \
68 -e '/^AM_CPPFLAGS/s:=:= -DMODULESDIR=\\"$(modexecdir)\\" :' \
69 -e 's:ltdl.lo::' \
70 -e '/^libherc_la_LIBADD/s:=:= -lltdl :' \
71 $(find -name Makefile.in)
72 sed -i '/MODULESDIR/d' config.h.in
73 }
74
75 src_compile() {
76 use custom-cflags || strip-flags
77 econf \
78 --enable-cckd-bzip2 \
79 --enable-het-bzip2 \
80 --enable-setuid-hercifc \
81 --enable-custom="Gentoo ${PF}.ebuild" \
82 || die "econf failed"
83 emake || die "emake failed"
84 }
85
86 src_install() {
87 emake DESTDIR="${D}" install || die
88 insinto /usr/share/hercules
89 doins hercules.cnf
90 dodoc README.* RELEASE.NOTES CHANGES
91 dohtml -r html
92 }