Author: glen                         Date: Thu May 21 17:23:34 2009 GMT
Module: packages                      Tag: HEAD
---- Log message:
- when using java_sun, use binary jars where java-sun is not available; rel 2

---- Files affected:
packages/java-hamcrest:
   java-hamcrest.spec (1.8 -> 1.9) 

---- Diffs:

================================================================
Index: packages/java-hamcrest/java-hamcrest.spec
diff -u packages/java-hamcrest/java-hamcrest.spec:1.8 
packages/java-hamcrest/java-hamcrest.spec:1.9
--- packages/java-hamcrest/java-hamcrest.spec:1.8       Wed May 20 09:06:00 2009
+++ packages/java-hamcrest/java-hamcrest.spec   Thu May 21 19:23:29 2009
@@ -1,38 +1,48 @@
 # $Revision$, $Date$
 # TODO:
-# - use more systen packages? (jarjar, lib/integration/*)
+# - use more system packages? (jarjar, lib/integration/*)
 # - build javadoc (now it fails)
 # - does not build with gcj.
 #
 # Conditional build:
-%bcond_without tests   # don't perform ant unit-test
+%bcond_with    javadoc         # don't build javadoc
+%bcond_without tests           # don't build and run tests
+%bcond_with    binary          # do not compile .jars from source use bundled 
ones
 #
 %if "%{pld_release}" == "ti"
 %bcond_without java_sun        # build with gcj
 %else
-%bcond_with    java_sun        # build with java-sun
+%bcond_without java_sun        # build with java-sun
+%endif
+
+# HACK: use binary where java-sun not available
+%ifnarch i586 i686 pentium3 pentium4 athlon %{x8664}
+%define        with_binary     1
 %endif
-#
-%include       /usr/lib/rpm/macros.java
 
 %define                srcname hamcrest
+%include       /usr/lib/rpm/macros.java
 Summary:       Hamcrest - a library of matchers
 Summary(pl.UTF-8):     Hamcrest - biblioteka klas dopasowujÄ…cych
 Name:          java-hamcrest
 Version:       1.1
-Release:       1
+Release:       2
 License:       BSD
 Group:         Libraries/Java
 Source0:       http://hamcrest.googlecode.com/files/%{srcname}-%{version}.tgz
 # Source0-md5: 1bd4fd301c1a0dc748082378a59cb281
+Source1:       
http://hamcrest.googlecode.com/files/%{srcname}-text-%{version}.jar
+# Source1-md5: 6267206d906192119a8e9770f7e2ed65
 Patch0:                %{srcname}-nosrc.patch
 URL:           http://code.google.com/p/hamcrest/
+%if %{without binary}
+%{!?with_java_sun:BuildRequires:       java-gcj-compat-devel}
+%{?with_java_sun:BuildRequires:        java-sun >= 1.5}
+%endif
 BuildRequires: ant >= 1.6
 %{?with_tests:BuildRequires:   ant-junit >= 1.6}
-%{!?with_java_sun:BuildRequires:       java-gcj-compat-devel}
 %{?with_tests:BuildRequires:   java-junit}
 BuildRequires: java-qdox
-%{?with_java_sun:BuildRequires:        java-sun >= 1.5}
 BuildRequires: jpackage-utils
 BuildRequires: rpm >= 4.4.9-56
 BuildRequires: rpm-javaprov
@@ -66,10 +76,16 @@
 %setup -q -n %{srcname}-%{version}
 %patch0 -p1
 
-rm -vf *.jar
 rm -vf lib/integration/junit-*.jar
 rm -vf lib/generator/qdox-*.jar
 
+%if %{with binary}
+# hamcrest-text somewhy missing in jar
+cp -a %{SOURCE1} .
+%else
+rm -vf *.jar
+%endif
+
 # TODO: add new property (with this default value) do be override with -D
 # TODO: add build.properties support to build.xml
 %{__sed} -i -e 's,lib/generator/qdox-1.6.1.jar,${qdox.jar},g' build.xml
@@ -77,23 +93,31 @@
 %build
 export JAVA_HOME="%{java_home}"
 
-CLASSPATH=$(find-jar qdox)
+qdox_jar=$(find-jar qdox)
+CLASSPATH=$qdox_jar
 cat <<EOF > build.properties
-qdox.jar=$(find-jar qdox)
+qdox.jar=$qdox_jar
 EOF
 
+%if %{with binary}
+install -d build
+cp -af *.jar build
+%else
 %ant core generator library text integration \
-       -Dqdox.jar=$(find-jar qdox) \
+       -Dqdox.jar=$qdox_jar \
        -Dversion=%{version}
+%endif
 
-%if 0
+%if %{with javadoc}
 # doesn't build
 %ant javadoc \
+       -Dqdox.jar=$qdox_jar \
        -Dversion=%{version}
 %endif
 
 %if %{with tests}
 %ant unit-test \
+       -Dqdox.jar=$qdox_jar \
        -Dversion=%{version}
 %endif
 
@@ -106,7 +130,7 @@
        ln -sf hamcrest-$f-%{version}.jar 
$RPM_BUILD_ROOT%{_javadir}/hamcrest-$f.jar
 done
 
-%if 0
+%if %{with javadoc}
 # javadoc
 install -d $RPM_BUILD_ROOT%{_javadocdir}/%{srcname}-%{version}
 cp -a dist/docs/api/* $RPM_BUILD_ROOT%{_javadocdir}/%{srcname}-%{version}
@@ -124,7 +148,7 @@
 %doc CHANGES.txt LICENSE.txt README.txt
 %{_javadir}/*.jar
 
-%if 0
+%if %{with javadoc}
 %files javadoc
 %defattr(644,root,root,755)
 %{_javadocdir}/%{srcname}-%{version}
@@ -137,6 +161,9 @@
 All persons listed below can be reached at <cvs_login>@pld-linux.org
 
 $Log$
+Revision 1.9  2009/05/21 17:23:29  glen
+- when using java_sun, use binary jars where java-sun is not available; rel 2
+
 Revision 1.8  2009/05/20 07:06:00  glen
 - release 1
 
================================================================

---- CVS-web:
    
http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/packages/java-hamcrest/java-hamcrest.spec?r1=1.8&r2=1.9&f=u

_______________________________________________
pld-cvs-commit mailing list
[email protected]
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit

Reply via email to