public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-emulation/hercules: ChangeLog hercules-3.07.ebuild
@ 2010-08-30  4:25 Mike Frysinger (vapier)
  0 siblings, 0 replies; 2+ messages in thread
From: Mike Frysinger (vapier) @ 2010-08-30  4:25 UTC (permalink / raw
  To: gentoo-commits

vapier      10/08/30 04:25:33

  Modified:             ChangeLog
  Added:                hercules-3.07.ebuild
  Log:
  Version bump #308823 by Jay Maynard.
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.28                 app-emulation/hercules/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/hercules/ChangeLog?rev=1.28&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/hercules/ChangeLog?rev=1.28&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/hercules/ChangeLog?r1=1.27&r2=1.28

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emulation/hercules/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog	10 Aug 2009 12:00:17 -0000	1.27
+++ ChangeLog	30 Aug 2010 04:25:33 -0000	1.28
@@ -1,6 +1,11 @@
 # ChangeLog for app-emulation/hercules
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/hercules/ChangeLog,v 1.27 2009/08/10 12:00:17 ssuominen Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/hercules/ChangeLog,v 1.28 2010/08/30 04:25:33 vapier Exp $
+
+*hercules-3.07 (30 Aug 2010)
+
+  30 Aug 2010; Mike Frysinger <vapier@gentoo.org> +hercules-3.07.ebuild:
+  Version bump #308823 by Jay Maynard.
 
   10 Aug 2009; Samuli Suominen <ssuominen@gentoo.org> hercules-3.06.ebuild,
   +files/hercules-3.06-gcc44.patch:



1.1                  app-emulation/hercules/hercules-3.07.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/hercules/hercules-3.07.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/hercules/hercules-3.07.ebuild?rev=1.1&content-type=text/plain

Index: hercules-3.07.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/hercules/hercules-3.07.ebuild,v 1.1 2010/08/30 04:25:33 vapier Exp $

inherit eutils flag-o-matic

DESCRIPTION="Hercules System/370, ESA/390 and zArchitecture Mainframe Emulator"
HOMEPAGE="http://www.hercules-390.org/"
SRC_URI="http://www.hercules-390.org/${P}.tar.gz"

LICENSE="QPL-1.0"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
IUSE="custom-cflags"

src_unpack() {
	unpack ${A}
	cd "${S}"
	sed -i \
		-e 's:@modexecdir@:$(libdir)/$(PACKAGE):' \
		-e '/^AM_CPPFLAGS/s:=:= -DMODULESDIR=\\"$(modexecdir)\\" :' \
		-e 's:ltdl.lo::' \
		-e '/^libherc_la_LIBADD/s:=:= -lltdl :' \
		$(find -name Makefile.in)
	sed -i '/MODULESDIR/d' config.h.in
}

src_compile() {
	use custom-cflags || strip-flags
	econf \
		--enable-cckd-bzip2 \
		--enable-het-bzip2 \
		--enable-setuid-hercifc \
		--enable-custom="Gentoo ${PF}.ebuild" \
		|| die "econf failed"
	emake || die "emake failed"
}

src_install() {
	emake DESTDIR="${D}" install || die
	insinto /usr/share/hercules
	doins hercules.cnf
	dodoc README.* RELEASE.NOTES CHANGES
	dohtml -r html
}






^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-emulation/hercules: ChangeLog hercules-3.07.ebuild
@ 2010-09-07 21:18 Mike Frysinger (vapier)
  0 siblings, 0 replies; 2+ messages in thread
From: Mike Frysinger (vapier) @ 2010-09-07 21:18 UTC (permalink / raw
  To: gentoo-commits

vapier      10/09/07 21:18:58

  Modified:             ChangeLog hercules-3.07.ebuild
  Log:
  Drop libtool munging as based in latest 3.06 ebuild.
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.30                 app-emulation/hercules/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/hercules/ChangeLog?rev=1.30&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/hercules/ChangeLog?rev=1.30&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/hercules/ChangeLog?r1=1.29&r2=1.30

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emulation/hercules/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog	4 Sep 2010 03:34:11 -0000	1.29
+++ ChangeLog	7 Sep 2010 21:18:58 -0000	1.30
@@ -1,6 +1,9 @@
 # ChangeLog for app-emulation/hercules
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/hercules/ChangeLog,v 1.29 2010/09/04 03:34:11 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/hercules/ChangeLog,v 1.30 2010/09/07 21:18:58 vapier Exp $
+
+  07 Sep 2010; Mike Frysinger <vapier@gentoo.org> hercules-3.07.ebuild:
+  Drop libtool munging as based in latest 3.06 ebuild.
 
   04 Sep 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> hercules-3.06.ebuild:
   x86 stable wrt bug #335186



1.2                  app-emulation/hercules/hercules-3.07.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/hercules/hercules-3.07.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/hercules/hercules-3.07.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/hercules/hercules-3.07.ebuild?r1=1.1&r2=1.2

Index: hercules-3.07.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emulation/hercules/hercules-3.07.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- hercules-3.07.ebuild	30 Aug 2010 04:25:33 -0000	1.1
+++ hercules-3.07.ebuild	7 Sep 2010 21:18:58 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/hercules/hercules-3.07.ebuild,v 1.1 2010/08/30 04:25:33 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/hercules/hercules-3.07.ebuild,v 1.2 2010/09/07 21:18:58 vapier Exp $
 
 inherit eutils flag-o-matic
 
@@ -19,8 +19,6 @@
 	sed -i \
 		-e 's:@modexecdir@:$(libdir)/$(PACKAGE):' \
 		-e '/^AM_CPPFLAGS/s:=:= -DMODULESDIR=\\"$(modexecdir)\\" :' \
-		-e 's:ltdl.lo::' \
-		-e '/^libherc_la_LIBADD/s:=:= -lltdl :' \
 		$(find -name Makefile.in)
 	sed -i '/MODULESDIR/d' config.h.in
 }






^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-09-07 21:19 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-30  4:25 [gentoo-commits] gentoo-x86 commit in app-emulation/hercules: ChangeLog hercules-3.07.ebuild Mike Frysinger (vapier)
  -- strict thread matches above, loose matches on Subject: below --
2010-09-07 21:18 Mike Frysinger (vapier)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox