]> git.pld-linux.org Git - packages/beecrypt.git/blobdiff - beecrypt.spec
- tab
[packages/beecrypt.git] / beecrypt.spec
index a0c0bf40dbab546504f0fb695599fd40a3537e26..fe7c7b5f7ffc943957379db49814d3de4ff08f17 100644 (file)
@@ -6,16 +6,17 @@
 %bcond_with    javac           # use javac instead of gcj
 %bcond_without python          # don't build python module
 %bcond_without doc             # don't build documentation
+%bcond_without static_libs     # don't build static libraries
 #
 Summary:       The BeeCrypt Cryptography Library
 Summary(pl):   Biblioteka kryptograficzna BeeCrypt
 Name:          beecrypt
 Version:       4.1.2
-Release:       1
+Release:       6
 Epoch:         2
 License:       LGPL
 Group:         Libraries
-Source0:       http://heanet.dl.sourceforge.net/beecrypt/%{name}-%{version}.tar.gz
+Source0:       http://dl.sourceforge.net/beecrypt/%{name}-%{version}.tar.gz
 # Source0-md5: 820d26437843ab0a6a8a5151a73a657c
 Patch0:                %{name}-opt.patch
 Patch1:                %{name}-lib64_fix.patch
@@ -27,7 +28,12 @@ BuildRequires:       automake
 BuildRequires: doxygen
 %endif
 %if %{with java} && !%{with javac}
+%ifarch i586 i686 athlon pentium3 pentium4 %{x8664}
+BuildRequires: jdk
+%else
 BuildRequires: gcc-java
+BuildRequires: libgcj-devel
+%endif
 %endif
 %if %{with doc}
 BuildRequires: ghostscript
@@ -37,13 +43,11 @@ BuildRequires:      graphviz
 BuildRequires: jdk
 %endif
 BuildRequires: libtool
-%if %{with java} && !%{with javac}
-BuildRequires: libgcj-devel
-%endif
 %if %{with python}
 BuildRequires: python-devel
 BuildRequires: python-modules
 %endif
+BuildRequires: rpmbuild(macros) >= 1.213
 %if %{with doc}
 BuildRequires: tetex-dvips
 BuildRequires: tetex-format-latex
@@ -53,7 +57,7 @@ BuildRequires:        tetex-metafont
 %endif
 BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
-%define                specflags_alpha          -mno-explicit-relocs 
+%define                specflags_alpha          -mno-explicit-relocs
 
 %description
 BeeCrypt is an open source cryptography library that contains highly
@@ -146,13 +150,14 @@ Requires: %{name} = %{epoch}:%{version}-%{release}
 %pyrequires_eq python-libs
 
 %description -n python-beecrypt
-The python-beecrypt package contains a module which permits applications
-written in the Python programming language to use the interface
-supplied by BeeCrypt libraries.
+The python-beecrypt package contains a module which permits
+applications written in the Python programming language to use the
+interface supplied by BeeCrypt libraries.
 
 %description -n python-beecrypt -l pl
-Pakiet python-beecrypt zawiera modu³, który pozwala aplikacjom napisanym w
-Pythonie na u¿ywanie interfejsu dostarczanego przez bibliotekê BeeCrytp.
+Pakiet python-beecrypt zawiera modu³, który pozwala aplikacjom
+napisanym w Pythonie na u¿ywanie interfejsu dostarczanego przez
+bibliotekê BeeCrytp.
 
 %prep
 %setup -q
@@ -175,9 +180,10 @@ Pythonie na u
 %configure \
        %{?with_javac:ac_cv_have_gcj=no} \
        --without-cplusplus \
-       --with%{!?with_java:out}-javaglue \
+       --with%{!?with_java:out}-java \
        --with-cpu=%{_target_cpu} \
-%ifarch amd64
+       %{!?with_static_libs:--enable-static=no} \
+%ifarch %{x8664}
        --with-arch=x86_64 \
 %else
        --with-arch=%{_target_cpu} \
@@ -196,6 +202,7 @@ doxygen
 
 %install
 rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT/%{_lib}
 
 %{__make} install \
        DESTDIR=$RPM_BUILD_ROOT
@@ -205,6 +212,10 @@ rm -rf $RPM_BUILD_ROOT
        DESTDIR=$RPM_BUILD_ROOT
 %endif
 
+mv -f $RPM_BUILD_ROOT%{_libdir}/libbeecrypt.so.*.*.* $RPM_BUILD_ROOT/%{_lib}
+ln -sf /%{_lib}/$(cd $RPM_BUILD_ROOT/%{_lib} ; echo libbeecrypt.so.*.*.*) \
+       $RPM_BUILD_ROOT%{_libdir}/libbeecrypt.so
+
 rm -f $RPM_BUILD_ROOT%{py_sitedir}/*.{la,a}
 
 %clean
@@ -219,7 +230,7 @@ rm -rf $RPM_BUILD_ROOT
 %files
 %defattr(644,root,root,755)
 %doc AUTHORS BENCHMARKS BUGS CONTRIBUTORS NEWS README
-%attr(755,root,root) %{_libdir}/libbeecrypt.so.*.*.*
+%attr(755,root,root) /%{_lib}/libbeecrypt.so.*.*.*
 
 %files devel
 %defattr(644,root,root,755)
@@ -227,9 +238,11 @@ rm -rf $RPM_BUILD_ROOT
 %{_libdir}/libbeecrypt.la
 %{_includedir}/beecrypt
 
+%if %{with static_libs}
 %files static
 %defattr(644,root,root,755)
 %{_libdir}/libbeecrypt.a
+%endif
 
 %if %{with java}
 %files java
@@ -241,16 +254,18 @@ rm -rf $RPM_BUILD_ROOT
 %attr(755,root,root) %{_libdir}/libbeecrypt_java.so
 %{_libdir}/libbeecrypt_java.la
 
+%if %{with static_libs}
 %files java-static
 %defattr(644,root,root,755)
 %{_libdir}/libbeecrypt_java.a
 %endif
+%endif
 
 %if %{with doc}
 %files doc
 %defattr(644,root,root,755)
-%doc docs/html/*
-%endif 
+%doc docs/html
+%endif
 
 %if %{with python}
 %files -n python-beecrypt
This page took 0.107908 seconds and 4 git commands to generate.