[t4k_common] Initial import.

Jon Ciesla limb at fedoraproject.org
Wed Sep 14 16:36:17 UTC 2011


commit e683b789f238544b529a4836fda85458fe6fc0a7
Author: Jon Ciesla <limb at jcomserv.net>
Date:   Wed Sep 14 11:35:55 2011 -0500

    Initial import.

 .gitignore      |    1 +
 sources         |    1 +
 t4k_common.spec |   88 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 90 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..dec1075 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/t4k_common-0.1.1.tar.gz
diff --git a/sources b/sources
index e69de29..88498ae 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+e3d5da74971f427e8deb1e904dfcf8ab  t4k_common-0.1.1.tar.gz
diff --git a/t4k_common.spec b/t4k_common.spec
new file mode 100644
index 0000000..60195ac
--- /dev/null
+++ b/t4k_common.spec
@@ -0,0 +1,88 @@
+Name: t4k_common
+Version: 0.1.1
+Release: 2%{?dist}
+URL: http://tux4kids.alioth.debian.org/
+Summary: Library for Tux4Kids applications
+License: GPLv3+
+Source0: https://alioth.debian.org/frs/download.php/3540/%{name}-%{version}.tar.gz
+Group: System Environment/Libraries
+BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
+BuildRequires: SDL-devel SDL_mixer-devel SDL_image-devel
+BuildRequires: SDL_Pango-devel SDL_net-devel librsvg2-devel cairo-devel
+BuildRequires: libpng-devel libxml2-devel doxygen
+Provides: bundled(liblinebreak)
+
+%package devel
+Summary: Development files for the Tux4Kids library
+Group: Development/Libraries
+Requires: %{name}%{?_isa} = %{version}-%{release}
+Requires: pkgconfig
+
+%description
+library of code shared by TuxMath, TuxType, and
+possibly other Tux4Kids apps in the future.
+
+%description devel
+library of code shared by TuxMath, TuxType, and
+possibly other Tux4Kids apps in the future.
+
+These are the development files.
+
+%prep
+%setup -q
+
+%build
+%configure
+make %{?_smp_mflags}
+doxygen
+rm -f doxygen/html/installdox
+
+%install
+rm -rf $RPM_BUILD_ROOT
+INSTALL='install -p' make DESTDIR=$RPM_BUILD_ROOT install
+rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
+rm -f $RPM_BUILD_ROOT%{_libdir}/*.a
+rm -f $RPM_BUILD_ROOT%{_includedir}/t4k_scandir.h
+chmod 755 $RPM_BUILD_ROOT%{_libdir}/lib%{name}.so
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post -p /sbin/ldconfig
+
+%postun -p /sbin/ldconfig
+
+%files
+%defattr(-,root,root,-)
+%doc COPYING README
+%{_libdir}/lib%{name}.so.*
+%{_datadir}/%{name}/
+
+%files devel
+%defattr(-,root,root,-)
+%doc doxygen/html/
+%{_libdir}/lib%{name}.so
+%{_includedir}/t4k*.h
+%{_libdir}/pkgconfig/t4k_common.pc
+
+%changelog
+* Mon Jul 18 2011 Jon Ciesla <limb at jcomserv.net> - 0.1.1-2
+- Swapped doc,defatttr lines for devel.
+- Removed installdox script.
+- Noted liblinebreak bundling exception.
+- Added _isa for -devel main package requires.
+
+* Mon Jul 18 2011 Jon Ciesla <limb at jcomserv.net> - 0.1.1-1
+- Updated to newest upstream.
+- Dropped .pc from base package.
+- Moved doxygen docs to -devel.
+- Changed solib permission handling.
+
+* Mon Mar 14 2011 Jon Ciesla <limb at jcomserv.net> - 0.0.3-3
+- Fixed multiple review issues from comment #3.
+
+* Wed Feb 23 2011 Jon Ciesla <limb at jcomserv.net> - 0.0.3-2
+- Fixed directory ownership and macro per informal review comments.
+
+* Wed Dec 29 2010 Jon Ciesla <limb at jcomserv.net> - 0.0.3-1
+- initial rpm


More information about the scm-commits mailing list