SPECS: uuid.spec - cleanup, add bconds for bindings, todo!

glen glen at pld-linux.org
Tue Jun 10 20:49:02 CEST 2008


Author: glen                         Date: Tue Jun 10 18:49:02 2008 GMT
Module: SPECS                         Tag: HEAD
---- Log message:
- cleanup, add bconds for bindings, todo!

---- Files affected:
SPECS:
   uuid.spec (1.1 -> 1.2) 

---- Diffs:

================================================================
Index: SPECS/uuid.spec
diff -u SPECS/uuid.spec:1.1 SPECS/uuid.spec:1.2
--- SPECS/uuid.spec:1.1	Tue Jun 10 20:27:52 2008
+++ SPECS/uuid.spec	Tue Jun 10 20:48:56 2008
@@ -1,6 +1,15 @@
 # $Revision$, $Date$
 # TODO
 # - conflicts with e2fsprogs uuid, rename libs with ossp prefix?
+# - rename include ossp/uuid.h?
+# - rename package to ossp-uuid?
+# - fix bindings compilation
+#
+# Conditional build:
+%bcond_with	php		# build with PHP binding
+%bcond_with	perl		# build with Perl binding
+%bcond_without	pgsql		# build with postgresql binding
+#
 Summary:	Universally Unique Identifier library
 Name:		uuid
 Version:	1.5.1
@@ -11,8 +20,8 @@
 Source0:	ftp://ftp.ossp.org/pkg/lib/uuid/%{name}-%{version}.tar.gz
 # Source0-md5:	d7df0c4cb02dad7ce3e1ec8fc669f724
 BuildRequires:	libtool
-BuildRequires:	php-devel
-BuildRequires:	postgresql-devel
+%{?with_php:BuildRequires:	php-devel}
+%{?with_pgsql:BuildRequires:	postgresql-devel}
 BuildRoot:	%{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
@@ -99,61 +108,19 @@
 # Build the library.
 %configure \
 	--disable-static \
-	--without-perl \
-	--without-php \
 	--with-dce \
 	--with-cxx \
-	--with-pgsql
+	--with%{!?with_perl:out}-perl \
+	--with%{!?with_php:out}-php \
+	--with%{!?with_pgsql:out}-pgsql
 
 %{__make}
 
-# Build the Perl module.
-cd perl
-%{__perl} Makefile.PL \
-	INSTALLDIRS=vendor \
-	OPTIMIZE="%{rpmcflags}" \
-	COMPAT=1
-%{__make}
-cd -
-
-# Build the PHP module.
-cd php
-phpize
-%configure \
-	--enable-uuid
-%{__make}
-cd -
-
 %install
 rm -rf $RPM_BUILD_ROOT
 %{__make} install \
 	DESTDIR=$RPM_BUILD_ROOT
 
-rm -f $RPM_BUILD_ROOT%{_libdir}/*.{la,a}
-#chmod 755 $RPM_BUILD_ROOT%{_libdir}/*.so.*.*.*
-
-# Install the Perl modules.
-%{__make} -C perl pure_install \
-	PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
-
-# Install the PHP module.
-%{__make} -C php install \
-	INSTALL_ROOT=$RPM_BUILD_ROOT
-rm -f $RPM_BUILD_ROOT%{_libdir}/php/modules/*.a
-
-%if 0
-%check
-%{__make} check
-
-cd perl
-LD_LIBRARY_PATH=../.libs make test
-cd -
-
-cd php
-LD_LIBRARY_PATH=../.libs make test
-cd -
-%endif
-
 %clean
 rm -rf $RPM_BUILD_ROOT
 
@@ -170,7 +137,8 @@
 %defattr(644,root,root,755)
 %doc AUTHORS ChangeLog HISTORY NEWS PORTING README SEEALSO THANKS TODO USERS
 %attr(755,root,root) %{_bindir}/uuid
-%attr(755,root,root) %{_libdir}/libuuid.so.*
+%attr(755,root,root) %{_libdir}/libuuid.so.*.*.*
+%attr(755,root,root) %ghost %{_libdir}/libuuid.so.15
 %{_mandir}/man1/*
 
 %files devel
@@ -180,26 +148,32 @@
 %{_libdir}/libuuid.so
 %{_pkgconfigdir}/uuid.pc
 %{_mandir}/man3/uuid.3*
+%{_libdir}/libuuid.la
 
 %files c++
 %defattr(644,root,root,755)
-%attr(755,root,root) %{_libdir}/libuuid++.so.*
+%attr(755,root,root) %{_libdir}/libuuid++.so.*.*.*
+%attr(755,root,root) %ghost %{_libdir}/libuuid++.so.15
 
 %files c++-devel
 %defattr(644,root,root,755)
 %{_includedir}/uuid++.hh
 %{_libdir}/libuuid++.so
+%{_libdir}/libuuid++.la
 %{_mandir}/man3/uuid++.3*
 
 %files dce
 %defattr(644,root,root,755)
-%attr(755,root,root) %{_libdir}/libuuid_dce.so.*
+%attr(755,root,root) %{_libdir}/libuuid_dce.so.*.*.*
+%attr(755,root,root) %ghost %{_libdir}/libuuid_dce.so.15
 
 %files dce-devel
 %defattr(644,root,root,755)
 %{_includedir}/uuid_dce.h
 %{_libdir}/libuuid_dce.so
+%{_libdir}/libuuid_dce.la
 
+%if %{with perl}
 %files -n perl-%{name}
 %defattr(644,root,root,755)
 %{perl_vendorarch}/auto/*
@@ -207,15 +181,20 @@
 %{perl_vendorarch}/OSSP*
 %{_mandir}/man3/Data::UUID.3*
 %{_mandir}/man3/OSSP::uuid.3*
+%endif
 
+%if %{with php}
 %files -n php-%{name}
 %defattr(644,root,root,755)
 %{_libdir}/php/uuid.so
+%endif
 
+%if %{with pgsql}
 %files -n postgresql-%{name}
 %defattr(644,root,root,755)
 %{_libdir}/postgresql/uuid.so
 %{_datadir}/postgresql/uuid.sql
+%endif
 
 %define date	%(echo `LC_ALL="C" date +"%a %b %d %Y"`)
 %changelog
@@ -223,6 +202,8 @@
 All persons listed below can be reached at <cvs_login>@pld-linux.org
 
 $Log$
+Revision 1.2  2008-06-10 18:48:56  glen
+- cleanup, add bconds for bindings, todo!
+
 Revision 1.1  2008-06-10 18:27:52  glen
 - based on http://distro.ibiblio.org/pub/linux/distributions/blag/latest/en/os/i386/SPECS/uuid.spec
-
================================================================

---- CVS-web:
    http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/uuid.spec?r1=1.1&r2=1.2&f=u



More information about the pld-cvs-commit mailing list