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: hercules-3.09.ebuild ChangeLog
Date: Tue, 27 Aug 2013 16:30:01
Message-Id: 20130827162957.94B3A2004E@flycatcher.gentoo.org
1 vapier 13/08/27 16:29:57
2
3 Modified: ChangeLog
4 Added: hercules-3.09.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)
9
10 Revision Changes Path
11 1.36 app-emulation/hercules/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/hercules/ChangeLog?rev=1.36&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/hercules/ChangeLog?rev=1.36&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/hercules/ChangeLog?r1=1.35&r2=1.36
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-emulation/hercules/ChangeLog,v
20 retrieving revision 1.35
21 retrieving revision 1.36
22 diff -u -r1.35 -r1.36
23 --- ChangeLog 28 Jul 2013 12:01:18 -0000 1.35
24 +++ ChangeLog 27 Aug 2013 16:29:57 -0000 1.36
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-emulation/hercules
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/hercules/ChangeLog,v 1.35 2013/07/28 12:01:18 grobian Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/hercules/ChangeLog,v 1.36 2013/08/27 16:29:57 vapier Exp $
30 +
31 +*hercules-3.09 (27 Aug 2013)
32 +
33 + 27 Aug 2013; Mike Frysinger <vapier@g.o>
34 + +files/hercules-3.09-aliasing.patch, +hercules-3.09.ebuild:
35 + Version bump.
36
37 28 Jul 2013; Fabian Groffen <grobian@g.o> hercules-3.08.ebuild:
38 Marked ~x86-macos
39
40
41
42 1.1 app-emulation/hercules/hercules-3.09.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/hercules/hercules-3.09.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/hercules/hercules-3.09.ebuild?rev=1.1&content-type=text/plain
46
47 Index: hercules-3.09.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-emulation/hercules/hercules-3.09.ebuild,v 1.1 2013/08/27 16:29:57 vapier Exp $
52
53 EAPI="4"
54
55 inherit flag-o-matic eutils
56
57 DESCRIPTION="Hercules System/370, ESA/390 and zArchitecture Mainframe Emulator"
58 HOMEPAGE="http://www.hercules-390.eu/"
59 SRC_URI="http://downloads.hercules-390.eu/${P}.tar.gz"
60
61 LICENSE="QPL-1.0"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~x64-macos ~x86-macos"
64 IUSE="bzip2 custom-cflags +suid"
65
66 RDEPEND="bzip2? ( app-arch/bzip2 )
67 sys-libs/zlib"
68 DEPEND="${RDEPEND}"
69
70 src_prepare() {
71 epatch "${FILESDIR}"/${P}-aliasing.patch
72 }
73
74 src_configure() {
75 use custom-cflags || strip-flags
76 ac_cv_lib_bz2_BZ2_bzBuffToBuffDecompress=$(usex bzip2) \
77 econf \
78 $(use_enable bzip2 cckd-bzip2) \
79 $(use_enable bzip2 het-bzip2) \
80 $(use_enable suid setuid-hercifc) \
81 --enable-custom="Gentoo ${PF}.ebuild" \
82 --disable-optimization
83 }
84
85 src_install() {
86 default
87 insinto /usr/share/hercules
88 doins hercules.cnf
89 dodoc README.* RELEASE.NOTES
90 dohtml -r html
91 }