145 lines
4.6 KiB
RPMSpec
145 lines
4.6 KiB
RPMSpec
|
#
|
||
|
# spec file for package bsf (Version 2.3.0)
|
||
|
#
|
||
|
# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||
|
# This file and all modifications and additions to the pristine
|
||
|
# package are under the same license as the package itself.
|
||
|
#
|
||
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||
|
#
|
||
|
|
||
|
# norootforbuild
|
||
|
# icecream 0
|
||
|
|
||
|
Name: bsf
|
||
|
BuildRequires: ant java2-devel-packages jython oldrhino servletapi4 xalan-j2 xml-commons-apis
|
||
|
%define name bsf
|
||
|
%define version 2.3.0
|
||
|
%define release 8jpp
|
||
|
%define section free
|
||
|
Version: 2.3.0
|
||
|
Release: 26
|
||
|
Summary: Bean Scripting Framework
|
||
|
License: Apache
|
||
|
URL: http://jakarta.apache.org/bsf/
|
||
|
Group: Development/Libraries/Java
|
||
|
Source0: http://jakarta.apache.org/builds/jakarta-%{name}/dev/v%{version}/src/%{name}-src-%{version}.tar.gz
|
||
|
Patch: %{name}-java14compat.patch
|
||
|
BuildArch: noarch
|
||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||
|
|
||
|
%description
|
||
|
Bean Scripting Framework (BSF) is a set of Java classes that provides
|
||
|
scripting language support within Java applications and access to Java
|
||
|
objects and methods from scripting languages. BSF allows writing JSPs
|
||
|
in languages other than Java while providing access to the Java class
|
||
|
library. In addition, BSF permits any Java application to be
|
||
|
implemented in part (or dynamically extended) by a language that is
|
||
|
embedded within it. This is achieved by providing an API that permits
|
||
|
calling scripting language engines from within Java as well as an
|
||
|
object registry that exposes Java objects to these scripting language
|
||
|
engines.
|
||
|
|
||
|
This BSF package currently supports several scripting languages: *
|
||
|
Javascript (using Rhino ECMAScript, from the Mozilla project)
|
||
|
|
||
|
* XSLT Stylesheets (as a component of Apache XML project's Xalan and
|
||
|
Xerces)
|
||
|
|
||
|
In addition, the following languages are supported with their own
|
||
|
BSF engines: * Java (using BeanShell, from the BeanShell project)
|
||
|
|
||
|
* JRuby
|
||
|
|
||
|
* JudoScript
|
||
|
|
||
|
|
||
|
|
||
|
%package javadoc
|
||
|
PreReq: coreutils
|
||
|
Summary: Javadoc for bsf
|
||
|
Group: Development/Libraries/Java
|
||
|
|
||
|
%description javadoc
|
||
|
Bean Scripting Framework (BSF) is a set of Java classes which provides
|
||
|
scripting language support within Java applications, and access to Java
|
||
|
objects and methods from scripting languages. BSF allows one to write
|
||
|
JSPs in languages other than Java while providing access to the Java
|
||
|
class library. In addition, BSF permits any Java application to be
|
||
|
implemented in part (or dynamically extended) by a language that is
|
||
|
embedded within it. This is achieved by providing an API that permits
|
||
|
calling scripting language engines from within Java, as well as an
|
||
|
object registry that exposes Java objects to these scripting language
|
||
|
engines.
|
||
|
|
||
|
This package contains the javadoc documentation for the Bean Scripting
|
||
|
Framework.
|
||
|
|
||
|
|
||
|
|
||
|
%prep
|
||
|
%setup -q
|
||
|
%patch
|
||
|
# remove all binary libs
|
||
|
find . -name "*.jar" -exec %{__rm} -f {} \;
|
||
|
%{__rm} -fr bsf
|
||
|
|
||
|
%build
|
||
|
[ -z "$JAVA_HOME" ] && export JAVA_HOME=%{_jvmdir}/java
|
||
|
export CLASSPATH=$(build-classpath oldrhino xalan-j2 jython servlet jspapi)
|
||
|
cd src
|
||
|
ant realclean
|
||
|
ant compile
|
||
|
%{__rm} -rf bsf/src/org/apache/bsf/engines/java
|
||
|
ant javadocs
|
||
|
|
||
|
%install
|
||
|
# jar
|
||
|
%{__install} -d -m 755 %{buildroot}%{_javadir}
|
||
|
%{__install} -m 644 src/build/lib/%{name}.jar \
|
||
|
%{buildroot}%{_javadir}/%{name}-%{version}.jar
|
||
|
(cd %{buildroot}%{_javadir} && for jar in *-%{version}*; do \
|
||
|
ln -sf ${jar} ${jar/-%{version}/}; done)
|
||
|
# javadoc
|
||
|
%{__install} -d -m 755 %{buildroot}%{_javadocdir}/%{name}-%{version}
|
||
|
%{__cp} -pr src/build/javadocs/* %{buildroot}%{_javadocdir}/%{name}-%{version}
|
||
|
(cd %{buildroot}%{_javadocdir} && ln -sf %{name}-%{version} %{name})
|
||
|
|
||
|
%clean
|
||
|
rm -rf $RPM_BUILD_ROOT
|
||
|
|
||
|
%post javadoc
|
||
|
%{__rm} -f %{_javadocdir}/%{name}
|
||
|
ln -s %{name}-%{version} %{_javadocdir}/%{name}
|
||
|
|
||
|
%postun javadoc
|
||
|
if [ $1 -eq 0 ]; then
|
||
|
%{__rm} -f %{_javadocdir}/%{name}
|
||
|
fi
|
||
|
|
||
|
%files
|
||
|
%defattr(-,root,root)
|
||
|
%doc license.txt src/AUTHORS src/BUILDING src/CHANGES src/CHANGES.old src/INSTALL src/README src/TODO
|
||
|
%{_javadir}/*
|
||
|
|
||
|
%files javadoc
|
||
|
%defattr(-,root,root)
|
||
|
%dir %{_javadocdir}/%{name}-%{version}
|
||
|
%{_javadocdir}/%{name}-%{version}/*
|
||
|
%ghost %{_javadocdir}/%{name}
|
||
|
|
||
|
%changelog -n bsf
|
||
|
* Mon Sep 25 2006 - skh@suse.de
|
||
|
- don't use icecream
|
||
|
- use source="1.4" and target="1.4" for build with java 1.5
|
||
|
* Wed Jan 25 2006 - mls@suse.de
|
||
|
- converted neededforbuild to BuildRequires
|
||
|
* Wed Jul 27 2005 - jsmeix@suse.de
|
||
|
- Adjustments in the spec file.
|
||
|
* Mon Jul 18 2005 - jsmeix@suse.de
|
||
|
- Current version 2.3.0 from JPackage.org
|
||
|
* Thu Sep 16 2004 - skh@suse.de
|
||
|
- Fix prerequires in javadoc subpackage
|
||
|
* Sat Sep 04 2004 - skh@suse.de
|
||
|
- Initial package created with version 2.3.0 (JPackage 1.5)
|