# Copyright (c) 2000-2007, JPackage Project # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the # distribution. # 3. Neither the name of the JPackage Project nor the names of its # contributors may be used to endorse or promote products derived # from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # %global with_eclipse 1 %global eclipse_base %{_libdir}/eclipse # Note: this next section looks weird having an arch specified in a # noarch specfile but the parts of the build # All arches line up between Eclipse and Linux kernel names except i386 -> x86 %ifarch %{ix86} %global eclipse_arch x86 %else %global eclipse_arch %{_arch} %endif Name: icu4j Version: 4.4.2.2 Release: 9%{?dist} Epoch: 1 Summary: International Components for Unicode for Java License: MIT and EPL URL: http://site.icu-project.org/ Group: Development/Libraries #CAUTION #to create a tarball use following procedure #svn co http://source.icu-project.org/repos/icu/icu4j/tags/release-4-4-2-eclipse37-20110208/ icu4j- #tar caf icu4j-.tar.xz icu4j-/ Source0: icu4j-4.4.2.2.tar.xz Source1: %{name}-4.4.2.pom ## CAUTION ## Please do not forget to update this Manifest to the latest one taken from the icu4j bundle from ## out/projects/ICU4J.com.ibm.icu/com.ibm.icu-com.ibm.icu.zip ## This is needed to unbreak cyclic dependencies between Eclipse and ICU4J Source2: icu4j-%{version}-MANIFEST.MF Patch0: %{name}-crosslink.patch BuildRequires: ant >= 1.7.0 # FIXME: is this necessary or is it just adding strings in the hrefs in # the docs? BuildRequires: java-javadoc >= 1:1.6.0 # This is to ensure we get OpenJDK and not GCJ BuildRequires: java-devel >= 1:1.6.0 BuildRequires: jpackage-utils >= 0:1.5 BuildRequires: zip Requires: jpackage-utils # This is to ensure we get OpenJDK and not GCJ Requires: java >= 1:1.6.0 %if %{with_eclipse} BuildRequires: eclipse-pde >= 0:3.2.1 %global debug_package %{nil} %else BuildArch: noarch %endif %description The International Components for Unicode (ICU) library provides robust and full-featured Unicode services on a wide variety of platforms. ICU supports the most current version of the Unicode standard, and provides support for supplementary characters (needed for GB 18030 repertoire support). Java provides a very strong foundation for global programs, and IBM and the ICU team played a key role in providing globalization technology into Sun's Java. But because of its long release schedule, Java cannot always keep up-to-date with evolving standards. The ICU team continues to extend Java's Unicode and internationalization support, focusing on improving performance, keeping current with the Unicode standard, and providing richer APIs, while remaining as compatible as possible with the original Java text and internationalization API design. %package javadoc Summary: Javadoc for %{name} Group: Documentation Requires: jpackage-utils Requires: java-javadoc >= 1:1.6.0 %description javadoc Javadoc for %{name}. %if %{with_eclipse} %package eclipse Summary: Eclipse plugin for %{name} Group: Development/Libraries Requires: jpackage-utils %description eclipse Eclipse plugin support for %{name}. %endif %prep %setup -q #%patch0 -p0 cp %{SOURCE1} . %{__sed} -i 's/\r//' APIChangeReport.html %{__sed} -i 's/\r//' readme.html sed --in-place "s/ .*bootclasspath=.*//g" build.xml sed --in-place "s///" build.xml sed --in-place "/javac1.3/d" build.xml sed --in-place "s:/usr/lib:%{_libdir}:g" build.xml %build %ant -Dicu4j.javac.source=1.5 -Dicu4j.javac.target=1.5 -Dj2se.apidoc=%{_javadocdir}/java jar docs %if %{with_eclipse} pushd eclipse-build %ant -Dj2se.apidoc=%{_javadocdir}/java -Declipse.home=%{eclipse_base} \ -Declipse.basews=gtk -Declipse.baseos=linux \ -Declipse.basearch=%{eclipse_arch} \ -Declipse.pde.dir=%{eclipse_base}/dropins/sdk/plugins/`ls %{eclipse_base}/dropins/sdk/plugins/|grep org.eclipse.pde.build_` popd %endif %install # inject OSGi manifests mkdir -p META-INF cp -p %{SOURCE2} META-INF/MANIFEST.MF touch META-INF/MANIFEST.MF zip -u %{name}.jar META-INF/MANIFEST.MF # jars %__mkdir_p %{buildroot}%{_javadir} %__cp -ap %{name}.jar %{buildroot}%{_javadir}/%{name}.jar # javadoc %__mkdir_p %{buildroot}%{_javadocdir}/%{name} %__cp -pr doc/* %{buildroot}%{_javadocdir}/%{name} %if %{with_eclipse} # eclipse install -d -m755 %{buildroot}/%{eclipse_base} unzip -qq -d %{buildroot}/%{eclipse_base} eclipse-build/out/projects/ICU4J.com.ibm.icu/com.ibm.icu-com.ibm.icu.zip %endif # maven stuff install -d -m 755 $RPM_BUILD_ROOT%{_mavenpomdir} cp %{name}-4.4.2.pom $RPM_BUILD_ROOT%{_mavenpomdir}/JPP-%{name}.pom %add_maven_depmap JPP-%{name}.pom %{name}.jar %files %doc readme.html APIChangeReport.html %{_javadir}/%{name}*.jar %{_mavendepmapfragdir}/* %{_mavenpomdir}/*.pom %files javadoc %doc %{_javadocdir}/* %if %{with_eclipse} %files eclipse %dir %{_libdir}/eclipse %dir %{_libdir}/eclipse/features %dir %{_libdir}/eclipse/plugins %{_libdir}/eclipse/features/* %{_libdir}/eclipse/plugins/* %doc readme.html %endif %changelog * Fri Jan 27 2012 Krzysztof Daniel 1:4.4.2.2-9 - Getting back to 4 digit version * Thu Jan 26 2012 Krzysztof Daniel 1:4.4.2-8 - Proper sources uploaded * Thu Jan 26 2012 Krzysztof Daniel 1:4.4.2-7 - Better versioning consistent with previous releases * Mon Jan 16 2012 Krzysztof Daniel 1:4.4.2.2-6 - Update to 4.4.2.2. * Fri Jan 13 2012 Fedora Release Engineering - 1:4.4.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild * Tue Nov 15 2011 Alexander Kurtakov 1:4.4.2-4 - Add proper manifest to the jar in the main package. * Fri Sep 16 2011 Alexander Kurtakov 1:4.4.2-3 - Adapt to current guidelines. * Mon May 9 2011 Alexander Kurtakov 1:4.4.2-2 - Use proper tarball. - Fix build. * Tue Apr 05 2011 Chris Aniszczyk 1:4.4.2-1 - Update to 4.4.2. * Wed Feb 09 2011 Fedora Release Engineering - 1:4.2.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild * Thu Jul 8 2010 Alexander Kurtakov 1:4.2.1-1 - Update to 4.2.1. * Fri Feb 5 2010 Mary Ellen Foster 1:4.0.1-5 - Add maven pom and depmap fragment * Tue Sep 29 2009 Alexander Kurtakov 1:4.0.1-4 - Simplify with_eclipse conditional. * Mon Aug 10 2009 Alexander Kurtakov 1:4.0.1-3 - Update qualifier to the Eclipse 3.5.0 release. * Fri Jul 24 2009 Fedora Release Engineering - 1:4.0.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Wed Apr 8 2009 Alexander Kurtakov 1:4.0.1-1 - Update to 4.0.1. * Tue Feb 24 2009 Fedora Release Engineering - 0:3.8.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Wed Oct 8 2008 Ville Skyttä - 0:3.8.1-4 - Disable debuginfo package when built with Eclipse support, change to noarch when built without it (#464017). * Mon Aug 11 2008 Andrew Overholt 3.8.1-3 - Get rid of eclipse_name macro - Rebuild with Eclipse 3.4 and put into Eclipse stuff into %%{_libdir}/eclipse - Remove now-unnecessary OSGi configuration dir patch - Add patch to point to PDE Build location * Fri Jul 11 2008 Andrew Overholt 0:3.8.1-2 - Remove GCJ support due to com.sun.tools.doclets.internal.toolkit.taglets.* import (not in gjdoc) * Fri Jul 11 2008 Andrew Overholt 0:3.8.1-1 - 3.8.1 * Wed Jul 9 2008 Tom "spot" Callaway - 0:3.6.1-3 - drop repotag - fix license tag * Mon Feb 18 2008 Fedora Release Engineering - 0:3.6.1-2jpp.6 - Autorebuild for GCC 4.3 * Tue Nov 13 2007 Andrew Overholt 3.6.1-1jpp.6 - Bump release and change updatetimestamp patch to have DOS line-endings. * Tue Nov 13 2007 Andrew Overholt 3.6.1-1jpp.5 - Bump release. * Fri Sep 28 2007 Andrew Overholt 3.6.1-1jpp.4 - Update timestamp to match Eclipse 3.3.1 release. * Wed Aug 29 2007 Fedora Release Engineering - 3.6.1-1jpp.3 - Rebuild for selinux ppc32 issue. * Wed Jun 27 2007 Ben Konrath - 0:3.6.1-1jpp.2 - Remove requires eclipse-rcp in eclipse sub-package. * Thu Jun 07 2007 Ben Konrath - 0:3.6.1-1jpp.1 - 3.6.1. - Enable eclipse sub-package. * Fri Mar 16 2007 Jeff Johnston - 0:3.4.5-2jpp.2 - Disable eclipse plugin support temporarily until build problems can be worked out. Plugin is still being built as part of eclipse platform. - BuildRequire sinjdoc. * Mon Feb 12 2007 Matt Wringe - 0:3.4.5-2jpp.1 - Fix some rpmlint issues - Make use of buildroot more consistent - Remove javadoc post and postun sections as per new jpp standard - Change license section to 'MIT style' license from 'MIT' license. This was done since the source package calls the license the "X license" (see readme.html in src jar). - Install eclipse plugin into /usr/share/eclipse * Mon Jan 22 2007 Fernando Nasser - 0:3.4.5-2jpp.1 - Merge with upstream * Mon Jan 22 2007 Fernando Nasser - 0:3.4.5-2jpp - Add optional eclipse subpackage, created by Jeff Johnston : - Add eclipse sub-package to create plugins. * Mon Jan 22 2007 Fernando Nasser - 0:3.4.5-1jpp - Upgrade to 3.4.5 with merge - Re-enable javadoc * Mon Sep 04 2006 Ben Konrath 0:3.4.5-1jpp_1fc - 3.4.5. - Add GCJ support with spec-convert-gcj-1.6. * Mon Jul 17 2006 Ben Konrath 0:3.4.4-1jpp_1fc - 3.4.4. - Add disable javadocs patch. * Tue Feb 28 2006 Fernando Nasser - 0:3.2-2jpp_1rh - First Red Hat build * Mon Feb 27 2006 Fernando Nasser - 0:3.2-2jpp - First JPP 1.7 build * Sun Jan 29 2005 David Walluck 0:3.2-1jpp - release (contributed by Mary Ellen Foster )