rpms/compat-guichan06/F-8 compat-guichan06.spec, NONE, 1.1 guichan-0.6.1-soname.patch, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2

Michael Thomas (wart) fedora-extras-commits at redhat.com
Fri Apr 4 16:51:21 UTC 2008


Author: wart

Update of /cvs/pkgs/rpms/compat-guichan06/F-8
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv864/F-8

Modified Files:
	.cvsignore sources 
Added Files:
	compat-guichan06.spec guichan-0.6.1-soname.patch 
Log Message:
Initial import for F-8




--- NEW FILE compat-guichan06.spec ---
Name:           compat-guichan06
Version:        0.6.1
Release:        7%{?dist}
Summary:        Compatibility libraries for guichan 0.6

Group:          Development/Libraries
License:        BSD
URL:            http://guichan.sourceforge.net
Source0:        http://downloads.sourceforge.net/guichan/guichan-%{version}.tar.gz
Patch0:         guichan-0.6.1-soname.patch
BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Obsoletes:      guichan = 0.6.1
Provides:       guichan = 0.6.1

BuildRequires:  allegro-devel, SDL-devel, SDL_image-devel, libGL-devel

%description
Guichan is a small, efficient C++ GUI library designed for games. It comes
with a standard set of widgets and can use several different objects for 
displaying graphics and grabbing user input.

%prep
%setup -q -n guichan-%{version}
for i in src/Makefile.am src/*/Makefile.am ; do
    touch -r $i $i.stamp
done
%patch0
for i in src/Makefile.am src/*/Makefile.am ; do
    touch -r $i.stamp $i
done


%build
%configure
make %{?_smp_mflags}


%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT

# Removing Libtool archives and static libraries
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
rm -f $RPM_BUILD_ROOT%{_libdir}/*.a

# Remove devel bits from this compat package
rm -rf $RPM_BUILD_ROOT%{_includedir}
rm -f $RPM_BUILD_ROOT%{_libdir}/libguichan.so
rm -f $RPM_BUILD_ROOT%{_libdir}/libguichan_allegro.so
rm -f $RPM_BUILD_ROOT%{_libdir}/libguichan_opengl.so
rm -f $RPM_BUILD_ROOT%{_libdir}/libguichan_sdl.so

%post -p /sbin/ldconfig


%postun -p /sbin/ldconfig


%clean
rm -rf $RPM_BUILD_ROOT


%files
%defattr(-,root,root,-)
%doc AUTHORS ChangeLog COPYING NEWS README TODO
%{_libdir}/libguichan-%{version}.so
%{_libdir}/libguichan_allegro-%{version}.so
%{_libdir}/libguichan_opengl-%{version}.so
%{_libdir}/libguichan_sdl-%{version}.so


%changelog
* Thu Apr 3 2008 Wart <wart at kobold.org> 0.6.1-7
- Add compat- prefix back into package name

* Thu Apr 3 2008 Wart <wart at kobold.org> 0.6.1-6
- Drop the -devel bits

* Tue Feb 19 2008 Wart <wart at kobold.org> 0.6.1-5
- Remove 'compat-' prefix from package name

* Fri Feb 15 2008 Wart <wart at kobold.org> 0.6.1-4
- Move files to version-specific directories

* Wed Jan 2 2008 Wart <wart at kobold.org> 0.6.1-3
- Rename to compat-guichan06

* Tue Aug  21 2007 Wart <wart at kobold.org> 0.6.1-2
- Rebuild for gcc BUILDID

* Sat Apr  7 2007 Wart <wart at kobold.org> 0.6.1-1
- Update to 0.6.1
- Use better sf download url
- Remove BR: glut-devel as upstream no longer uses it.
- Add patch to add soname to shared libraries

* Wed Oct  4 2006 Hugo Cisneiros <hugo at devin.com.br> 0.5.0-1
- Upstream update
- Add freeglut-devel BR for the new release
- Removed unusued patches for this new version

* Wed Sep 13 2006 Hugo Cisneiros <hugo at devin.com.br> 0.4.0-3
- Rebuilt for FC6

* Sat Jun 10 2006 Hugo Cisneiros <hugo at devin.com.br> 0.4.0-2
- Using libGL-devel instead of mesa-libGL-devel in BuildRequires
- Put documentation under -devel instead of a whole -doc
- Touch "autoxxx" files to take out autoxxx commands use in devel
- Add proper location do doc files (/usr/share/doc/xxx/html)

* Fri Jun  9 2006 Hugo Cisneiros <hugo at devin.com.br> 0.4.0-1
- Initial RPM release

guichan-0.6.1-soname.patch:

--- NEW FILE guichan-0.6.1-soname.patch ---
--- src/widgets/Makefile.in.orig	2007-03-18 18:28:07.000000000 -0700
+++ src/widgets/Makefile.in	2007-03-18 18:28:29.000000000 -0700
@@ -191,6 +191,7 @@
 INCLUDES = -I$(top_srcdir)/include
 
 # The Gui-chan library sources
+libguichan_widgets_la_LDFLAGS = -release @PACKAGE_VERSION@
 libguichan_widgets_la_SOURCES = \
 	button.cpp		\
 	checkbox.cpp		\
--- src/widgets/Makefile.am.orig	2007-03-18 18:28:07.000000000 -0700
+++ src/widgets/Makefile.am	2007-03-18 18:28:20.000000000 -0700
@@ -3,6 +3,7 @@
 INCLUDES = -I$(top_srcdir)/include
 
 # The Gui-chan library sources
+libguichan_widgets_la_LDFLAGS = -release @PACKAGE_VERSION@
 libguichan_widgets_la_SOURCES = \
 	button.cpp		\
 	checkbox.cpp		\
--- src/sdl/Makefile.in.orig	2007-03-18 18:27:33.000000000 -0700
+++ src/sdl/Makefile.in	2007-03-18 18:27:53.000000000 -0700
@@ -198,6 +198,7 @@
 target_vendor = @target_vendor@
 lib_LTLIBRARIES = libguichan_sdl.la
 INCLUDES = -I$(top_srcdir)/include
+libguichan_sdl_la_LDFLAGS = -release @PACKAGE_VERSION@
 libguichan_sdl_la_SOURCES = \
 	sdl.cpp			\
 	sdlgraphics.cpp		\
--- src/sdl/Makefile.am.orig	2007-03-18 18:27:32.000000000 -0700
+++ src/sdl/Makefile.am	2007-03-18 18:27:45.000000000 -0700
@@ -4,6 +4,7 @@
 
 INCLUDES = -I$(top_srcdir)/include
 
+libguichan_sdl_la_LDFLAGS = -release @PACKAGE_VERSION@
 libguichan_sdl_la_SOURCES =	\
 	sdl.cpp			\
 	sdlgraphics.cpp		\
--- src/allegro/Makefile.in.orig	2007-03-18 18:24:24.000000000 -0700
+++ src/allegro/Makefile.in	2007-03-18 18:25:10.000000000 -0700
@@ -196,6 +196,7 @@
 target_vendor = @target_vendor@
 lib_LTLIBRARIES = libguichan_allegro.la
 INCLUDES = -I$(top_srcdir)/include
+libguichan_allegro_la_LDFLAGS = -release @PACKAGE_VERSION@
 libguichan_allegro_la_SOURCES = \
 		allegro.cpp		\
 		allegrographics.cpp	\
--- src/allegro/Makefile.am.orig	2007-03-18 18:24:19.000000000 -0700
+++ src/allegro/Makefile.am	2007-03-18 18:24:46.000000000 -0700
@@ -2,9 +2,10 @@
 
 INCLUDES = -I$(top_srcdir)/include
 
+libguichan_allegro_la_LDFLAGS = -release @PACKAGE_VERSION@
 libguichan_allegro_la_SOURCES =		\
 		allegro.cpp		\
 		allegrographics.cpp	\
 		allegroimage.cpp	\
 		allegroimageloader.cpp	\
-		allegroinput.cpp
\ No newline at end of file
+		allegroinput.cpp
--- src/opengl/Makefile.in.orig	2007-03-18 18:26:31.000000000 -0700
+++ src/opengl/Makefile.in	2007-03-18 18:27:00.000000000 -0700
@@ -196,6 +196,7 @@
 target_vendor = @target_vendor@
 lib_LTLIBRARIES = libguichan_opengl.la
 INCLUDES = -I$(top_srcdir)/include
+libguichan_opengl_la_LDFLAGS = -release @PACKAGE_VERSION@
 libguichan_opengl_la_SOURCES = \
 	opengl.cpp		\
 	openglimage.cpp		\
--- src/opengl/Makefile.am.orig	2007-03-18 18:26:27.000000000 -0700
+++ src/opengl/Makefile.am	2007-03-18 18:26:44.000000000 -0700
@@ -2,6 +2,7 @@
 
 INCLUDES = -I$(top_srcdir)/include
 
+libguichan_opengl_la_LDFLAGS = -release @PACKAGE_VERSION@
 libguichan_opengl_la_SOURCES =	\
 	opengl.cpp		\
 	openglimage.cpp		\
--- src/Makefile.in.orig	2007-03-18 17:49:41.000000000 -0700
+++ src/Makefile.in	2007-03-18 17:52:12.000000000 -0700
@@ -206,6 +206,7 @@
 INCLUDES = -I$(top_srcdir)/include
 lib_LTLIBRARIES = libguichan.la
 libguichan_la_LIBADD = widgets/libguichan_widgets.la
+libguichan_la_LDFLAGS = -release @PACKAGE_VERSION@
 libguichan_la_DEPENDENCIES = \
 	widgets/libguichan_widgets.la
 
--- src/Makefile.am.orig	2007-03-18 17:49:38.000000000 -0700
+++ src/Makefile.am	2007-03-18 17:50:21.000000000 -0700
@@ -5,6 +5,7 @@
 lib_LTLIBRARIES = libguichan.la
 
 libguichan_la_LIBADD = widgets/libguichan_widgets.la
+libguichan_la_LDFLAGS = -release @PACKAGE_VERSION@
 
 libguichan_la_DEPENDENCIES = \
 	widgets/libguichan_widgets.la


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/compat-guichan06/F-8/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore	4 Apr 2008 15:58:38 -0000	1.1
+++ .cvsignore	4 Apr 2008 16:50:45 -0000	1.2
@@ -0,0 +1 @@
+guichan-0.6.1.tar.gz


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/compat-guichan06/F-8/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources	4 Apr 2008 15:58:38 -0000	1.1
+++ sources	4 Apr 2008 16:50:45 -0000	1.2
@@ -0,0 +1 @@
+830145f71ad4ce4c91e09808fec68c8a  guichan-0.6.1.tar.gz




More information about the fedora-extras-commits mailing list