File itext.spec of Package itext
#
# spec file for package itext
#
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2000-2005, JPackage Project
# All rights reserved.
#
# 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 section free
Summary: A Free Java-PDF library
License: MPL-1.1
Group: Development/Languages/Java
Name: itext
Version: 1.4
Release: 0.<RELEASE2>
Url: http://www.lowagie.com/iText/
Source0: itext-src-1.4.tar.gz
# svn export https://itext.svn.sourceforge.net/svnroot/itext/tags/iText_1_4 itext
# tar czf itext-src-1.4.tar.gz itext
Source2: itext-1.3-manifest.mf
Source3: %{name}.pom
Patch0: %{name}-usefreesoftware.patch
BuildRequires: ant
BuildRequires: ant-trax
BuildRequires: jpackage-utils >= 1.6
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
iText is a library that allows you to generate PDF files on the fly.
The iText classes are very useful for people who need to generate
read-only, platform independent documents containing text, lists,
tables and images. The library is especially useful in combination with
Java(TM) technology-based Servlets: The look and feel of HTML is
browser dependent; with iText and PDF you can control exactly how your
servlet's output will look.
%package javadoc
Summary: A Free Java-PDF library
Group: Development/Languages/Java
%description javadoc
iText is a library that allows you to generate PDF files on the fly.
The iText classes are very useful for people who need to generate
read-only, platform independent documents containing text, lists,
tables and images. The library is especially useful in combination with
Java(TM) technology-based Servlets: The look and feel of HTML is
browser dependent; with iText and PDF you can control exactly how your
servlet's output will look.
%{summary}.
%package manual
Summary: A Free Java-PDF library
Group: Development/Languages/Java
%description manual
iText is a library that allows you to generate PDF files on the fly.
The iText classes are very useful for people who need to generate
read-only, platform independent documents containing text, lists,
tables and images. The library is especially useful in combination with
Java(TM) technology-based Servlets: The look and feel of HTML is
browser dependent; with iText and PDF you can control exactly how your
servlet's output will look.
%{summary}.
%prep
%setup -q -n %{name}
mkdir -p src/META-INF
cp %{SOURCE2} src/META-INF/MANIFEST.MF
find . -name "*.jar" -exec rm {} \;
%patch0
%build
pushd src
export OPT_JAR_LIST="ant/ant-trax"
ant -Dant.build.javac.source=1.5 -Dant.build.javac.target=1.5 jar javadoc tutorial lowagie.com
popd
%install
# jars
mkdir -p $RPM_BUILD_ROOT%{_javadir}/itext
cp -p build/bin/iText.jar \
$RPM_BUILD_ROOT%{_javadir}/%{name}-%{version}.jar
(cd $RPM_BUILD_ROOT%{_javadir} && for jar in *-%{version}.jar; do ln -sf ${jar} `echo $jar| sed "s|-%{version}||g"`; done)
# javadoc
mkdir -p $RPM_BUILD_ROOT%{_javadocdir}/%{name}
cp -pr build/docs/* $RPM_BUILD_ROOT%{_javadocdir}/%{name}
# manual
mkdir -p $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}
cp -pr build/lowagie/* $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}
cp -pr build/examples $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}
cp -pr build/tutorial $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}
# Install the pom
mkdir -p $RPM_BUILD_ROOT%{_mavenpomdir}
install -dm 755 $RPM_BUILD_ROOT%{_mavenpomdir}
cp -pr %{SOURCE3} $RPM_BUILD_ROOT%{_mavenpomdir}/JPP-%{name}.pom
%add_maven_depmap JPP-%{name}.pom %{name}.jar -a "itext:itext"
%files
%defattr(0644,root,root,0755)
%if ! 0%{?suse_version}
%doc %{_docdir}/%{name}-%{version}/MPL-1.1.txt
%doc %{_docdir}/%{name}-%{version}/lgpl.txt
%endif
%{_javadir}/*
%{_mavenpomdir}/JPP-%{name}.pom
%{_mavendepmapfragdir}
%files javadoc
%defattr(0644,root,root,0755)
%doc %{_javadocdir}/%{name}
%files manual
%defattr(0644,root,root,0755)
%doc %{_docdir}/%{name}-%{version}/MPL-1.1.txt
%doc %{_docdir}/%{name}-%{version}/lgpl.txt
%doc %{_docdir}/%{name}-%{version}
# -----------------------------------------------------------------------------
%changelog