Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
openSUSE:12.2:ARM
libdb_java-4_5
libdb-4_5.spec
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File libdb-4_5.spec of Package libdb_java-4_5
# # spec file for package libdb-4_5 # # Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed # upon. The license for this file, and modifications and additions to the # file, is the same license as for the pristine package itself (unless the # license for the pristine package is not an Open Source License, in which # case the license is the MIT License). An "Open Source License" is a # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. # Please submit bugfixes or comments via http://bugs.opensuse.org/ # %define generic_name db %define docdir %{_defaultdocdir}/%{name} %define major 4 %define minor 5 Name: libdb-4_5 Version: %{major}.%{minor}.20 Release: 0 Summary: Berkeley DB Database Library Version 4.5 License: BSD-3-Clause Group: System/Libraries Url: http://www.sleepycat.com Source: db-%{version}.tar.bz2 Source9: getpatches Patch0: db-%{version}-rep.patch Patch1: db-%{version}-sequence.patch Patch2: db-%{version}.patch BuildRequires: autoconf BuildRequires: fdupes BuildRequires: gcc-c++ BuildRoot: %{_tmppath}/%{name}-%{version}-build # bug437293 %ifarch ppc64 Obsoletes: db-64bit %endif %description The Berkeley DB Database is a programmatic toolkit that provides database support for applications. This package contains the necessary runtime libraries. %package -n db45-utils-doc Summary: Documentation for the Command Line tools for Managing Berkeley DB Databases Group: Productivity/Databases/Tools Requires: libdb-4_5 = %{version} %if 0%{?suse_version} >= 1120 BuildArch: noarch %endif %description -n db45-utils-doc The Berkeley DB Database is a programmatic toolkit that provides database support for applications. This package contains the documentation for the command line tools for managing Berkeley DB databases. %package -n db45-utils Summary: Command Line tools for Managing Berkeley DB Databases Group: Productivity/Databases/Tools %description -n db45-utils The Berkeley DB Database is a programmatic toolkit that provides database support for applications. This package contains the command line tools for managing Berkeley DB databases. %package -n db45-doc Summary: Documentation for Berkeley DB Group: Development/Libraries/C and C++ %if 0%{?suse_version} >= 1120 BuildArch: noarch %endif %description -n db45-doc The Berkeley DB Database is a programmatic toolkit that provides database support for applications. This package contains the documentation. %package devel Summary: Development Files and Libraries for the old Berkeley DB library Version 4.5 Group: Development/Libraries/C and C++ Requires: %{name} = %{version} Requires: glibc-devel %description devel The Berkeley DB Database is a programmatic toolkit that provides database support for applications. This package contains the header files and libraries. %prep %setup -q -n %{generic_name}-%{version} %patch0 %patch1 %patch2 cd .. tar -jcf %{generic_name}-%{version}.tar.bz2 %{generic_name}-%{version} %build cd dist ./s_config CFLAGS="%{optflags} -fno-strict-aliasing" CC=gcc export CFLAGS CXXFLAGS CC # # Build now the NPTL version # mkdir ../build_nptl cd ../build_nptl ../dist/configure --prefix=%{_prefix} \ --libdir=%{_libdir} --enable-compat185 --disable-dump185 \ --enable-shared --disable-static --enable-rpc --enable-cxx \ --with-mutex="POSIX/pthreads/library" \ %ifarch %arm %{_target_cpu}-suse-linux-gnueabi %else %{_target_cpu}-suse-linux %endif # Make sure O_DIRECT is really disabled (build host could have old kernel) perl -pi -e 's/#define HAVE_O_DIRECT 1/#undef HAVE_O_DIRECT/' db_config.h # Remove libtool predep_objects and postdep_objects wonkiness perl -pi -e 's/^predep_objects=".*$/predep_objects=""/' libtool perl -pi -e 's/^postdep_objects=".*$/postdep_objects=""/' libtool perl -pi -e 's/-shared -nostdlib/-shared/' libtool make %{?_smp_mflags} LIBSO_LIBS='$(LIBS)' LIBXSO_LIBS='$(LIBS)'" -L%{_libdir} -lstdc++" %install mkdir -p %{buildroot}%{_includedir}/db4 CONFIG_ARGS=$(find . -name "config.log" -exec grep "\$ \.\./dist\/configure" {} \; | sed 's/.*configure\( --.*\)/\1/g') if [ -z "$CONFIG_ARGS" ] then echo "could not find configure arguments ... exiting" exit 42 fi mkdir -p %{buildroot}%{_libdir} cd build_nptl make prefix=%{buildroot}%{_prefix} libdir=%{buildroot}%{_libdir} strip=true install cd .. # make ldd happy: chmod 755 %{buildroot}%{_libdir}/libdb*.so # Fix header file installation mv %{buildroot}%{_includedir}/*.h %{buildroot}%{_includedir}/db4 echo "#include <db4/db.h>" > %{buildroot}%{_includedir}/db.h echo "#include <db4/db_185.h>" > %{buildroot}%{_includedir}/db_185.h echo "#include <db4/db_cxx.h>" > %{buildroot}%{_includedir}/db_cxx.h # remove dangling tags symlink from examples. rm -f examples_cxx/tags rm -f examples_c/tags # Move documentation to the right directory mkdir -p %{buildroot}%{docdir} mv %{buildroot}%{_prefix}/docs/* %{buildroot}/%{docdir} cp -a examples_cxx examples_c %{buildroot}/%{docdir} cp -a LICENSE README %{buildroot}/%{docdir} # # Remove api documentation for Java and TCL rm -rf %{buildroot}/%{docdir}/java rm -rf %{buildroot}/%{docdir}/api_java rm -rf %{buildroot}/%{docdir}/api_tcl mv %{buildroot}/%{docdir}/collections/tutorial %{buildroot}/%{docdir}/ # Remove crappy *.la files rm -rf %{buildroot}%{_libdir}/*.la rm -rf %{buildroot}%{_libdir}/tls/*.la mv %{buildroot}/%{_bindir}/berkeley_db_svc %{buildroot}/%{_bindir}/berkeley_db45_svc mv %{buildroot}/%{_bindir}/db_archive %{buildroot}/%{_bindir}/db45_archive mv %{buildroot}/%{_bindir}/db_checkpoint %{buildroot}/%{_bindir}/db45_checkpoint mv %{buildroot}/%{_bindir}/db_deadlock %{buildroot}/%{_bindir}/db45_deadlock mv %{buildroot}/%{_bindir}/db_dump %{buildroot}/%{_bindir}/db45_dump mv %{buildroot}/%{_bindir}/db_load %{buildroot}/%{_bindir}/db45_load mv %{buildroot}/%{_bindir}/db_printlog %{buildroot}/%{_bindir}/db45_printlog mv %{buildroot}/%{_bindir}/db_recover %{buildroot}/%{_bindir}/db45_recover mv %{buildroot}/%{_bindir}/db_stat %{buildroot}/%{_bindir}/db45_stat mv %{buildroot}/%{_bindir}/db_upgrade %{buildroot}/%{_bindir}/db45_upgrade mv %{buildroot}/%{_bindir}/db_verify %{buildroot}/%{_bindir}/db45_verify mv %{buildroot}/%{_bindir}/db_hotbackup %{buildroot}/%{_bindir}/db45_hotbackup %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files %defattr(-,root,root) %{_libdir}/libdb-%{major}.%{minor}.so %{_libdir}/libdb_cxx-%{major}.%{minor}.so %files -n db45-doc %defattr(-,root,root) %dir %{docdir} %doc %{docdir}/LICENSE %doc %{docdir}/README %doc %{docdir}/index.html %doc %{docdir}/license %doc %{docdir}/images %doc %{docdir}/api_c %doc %{docdir}/api_cxx %doc %{docdir}/gsg* %doc %{docdir}/ref %doc %{docdir}/examples_c %doc %{docdir}/examples_cxx %doc %{docdir}/tutorial %files -n db45-utils-doc %defattr(-,root,root) %doc %{docdir}/utility %files -n db45-utils %defattr(-,root,root) %{_bindir}/berkeley_db45_svc %{_bindir}/db45_archive %{_bindir}/db45_checkpoint %{_bindir}/db45_deadlock %{_bindir}/db45_dump %{_bindir}/db45_load %{_bindir}/db45_printlog %{_bindir}/db45_recover %{_bindir}/db45_stat %{_bindir}/db45_upgrade %{_bindir}/db45_verify %{_bindir}/db45_hotbackup %files devel %defattr(-,root,root) %dir %{_includedir}/db4 %{_includedir}/db.h %{_includedir}/db_185.h %{_includedir}/db_cxx.h %{_includedir}/db4/db.h %{_includedir}/db4/db_185.h %{_includedir}/db4/db_cxx.h %{_libdir}/libdb.so %{_libdir}/libdb-%{major}.so %{_libdir}/libdb_cxx.so %{_libdir}/libdb_cxx-%{major}.so %changelog
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor