rpms/hercules/F-11 hercules-intltoolize.patch, NONE, 1.1 .cvsignore, 1.8, 1.9 hercules.spec, 1.26, 1.27 sources, 1.8, 1.9 hercules-3.06-extgui.patch, 1.1, NONE hercules-3.06-preproc.patch, 1.1, NONE

Dan Horák sharkcz at fedoraproject.org
Mon Jan 4 10:16:29 UTC 2010


Author: sharkcz

Update of /cvs/pkgs/rpms/hercules/F-11
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32591

Modified Files:
	.cvsignore hercules.spec sources 
Added Files:
	hercules-intltoolize.patch 
Removed Files:
	hercules-3.06-extgui.patch hercules-3.06-preproc.patch 
Log Message:
* Sun Dec 27 2009 Dan Horák <dan[at]danny.cz> 3.06-5.20091227svn5570
- updated to svn revision 5570


hercules-intltoolize.patch:
 configure.ac |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

--- NEW FILE hercules-intltoolize.patch ---
>From 6c072a76206f35323788f4a70b9d8e8570dc25c6 Mon Sep 17 00:00:00 2001
From: =?utf-8?q?Dan=20Hor=C3=A1k?= <dan at danny.cz>
Date: Mon, 14 Dec 2009 17:07:37 +0100
Subject: [PATCH] add support for intltoolize

---
 configure.ac |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/configure.ac b/configure.ac
index 0eee5c9..85a2886 100644
--- a/configure.ac
+++ b/configure.ac
@@ -200,6 +200,9 @@ AC_MSG_NOTICE( [(use of lt_dlopen forced by Hercules Dynamic Loader requirement)
 hc_cv_have_lt_dlopen=yes
 
 
+IT_PROG_INTLTOOL
+GETTEXT_PACKAGE=hercules
+AC_SUBST(GETTEXT_PACKAGE)
 
 AM_GNU_GETTEXT([external])              #
 AM_ICONV
-- 
1.6.3.3



Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/hercules/F-11/.cvsignore,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -p -r1.8 -r1.9
--- .cvsignore	18 Feb 2009 21:15:35 -0000	1.8
+++ .cvsignore	4 Jan 2010 10:16:28 -0000	1.9
@@ -1 +1 @@
-hercules-3.06.tar.gz
+hercules-svn5570.tar.bz2


Index: hercules.spec
===================================================================
RCS file: /cvs/pkgs/rpms/hercules/F-11/hercules.spec,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -p -r1.26 -r1.27
--- hercules.spec	17 Sep 2009 07:52:47 -0000	1.26
+++ hercules.spec	4 Jan 2010 10:16:29 -0000	1.27
@@ -1,22 +1,29 @@
+%global svnrev 5570
+
 Summary: Hercules S/370, ESA/390, and z/Architecture emulator
 Name: hercules
 Version: 3.06
-Release: 4%{?dist}
+Release: 5.20091227svn%{svnrev}%{?dist}
 License: QPL
 Group: Applications/Emulators
 URL: http://www.hercules-390.org/
-Source0: http://www.hercules-390.org/hercules-%{version}.tar.gz
+#Source0: http://www.hercules-390.org/hercules-%{version}.tar.gz
+# fedora-getsvn hercules svn://svn.hercules-390.org/hercules/trunk %{svnrev}
+Source0: %{name}-svn%{svnrev}.tar.bz2
 Source1: hercules.cnf
 Source2: hercules-run
 Source3: README-rpm
 Source4: generic.prm
 Patch0: %{name}-3.05-make.patch
 Patch1: %{name}-3.06-ltdl.patch
-Patch2: %{name}-3.06-preproc.patch
-Patch3: %{name}-3.06-extgui.patch
+Patch2: %{name}-intltoolize.patch
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
-BuildRequires: bison, zlib-devel, bzip2-devel
-BuildRequires: libtool libtool-ltdl-devel
+BuildRequires: zlib-devel
+BuildRequires: bzip2-devel
+BuildRequires: libcap-devel
+BuildRequires: libtool
+BuildRequires: libtool-ltdl-devel
+BuildRequires: intltool
 
 %description
 Hercules is an emulator for the IBM System/370, ESA/390, and z/Architecture
@@ -28,17 +35,17 @@ printer-keyboard, 3270 terminal, and 328
 
 
 %prep
-%setup -q
+%setup -q -n %{name}
 %patch0 -p0
 %patch1 -p1
 %patch2 -p1
-%patch3 -p1
 
 # refresh for recent libtool
 rm autoconf/libtool.m4
 libtoolize --copy --force
 
 # refresh buildsystem
+intltoolize -f
 aclocal -I m4 -I autoconf
 autoheader
 automake
@@ -102,6 +109,9 @@ sed -i 's|\${DESTPREFIX}/lib/|%{_libdir}
 
 
 %changelog
+* Sun Dec 27 2009 Dan Horák <dan[at]danny.cz> 3.06-5.20091227svn5570
+- updated to svn revision 5570
+
 * Thu Sep 17 2009 Dan Horák <dan[at]danny.cz> 3.06-4
 - fixed module loading with libtool >= 2.0
 


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/hercules/F-11/sources,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -p -r1.8 -r1.9
--- sources	18 Feb 2009 21:15:35 -0000	1.8
+++ sources	4 Jan 2010 10:16:29 -0000	1.9
@@ -1 +1 @@
-3a356b251e2b7fc49ac2b7244d12d50b  hercules-3.06.tar.gz
+7e7c04d17117f8bc86871e1aa5c6f457  hercules-svn5570.tar.bz2


--- hercules-3.06-extgui.patch DELETED ---


--- hercules-3.06-preproc.patch DELETED ---




More information about the fedora-extras-commits mailing list