2007-01-15 23:18:36 +00:00
|
|
|
#
|
2013-09-26 05:04:36 +00:00
|
|
|
# spec file for package javacc
|
2007-01-15 23:18:36 +00:00
|
|
|
#
|
2013-09-26 05:04:36 +00:00
|
|
|
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2007-01-15 23:18:36 +00:00
|
|
|
#
|
2009-06-18 22:34:06 +00:00
|
|
|
# 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.
|
|
|
|
|
2007-01-15 23:18:36 +00:00
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
2009-06-18 22:34:06 +00:00
|
|
|
|
2007-01-15 23:18:36 +00:00
|
|
|
Name: javacc
|
2008-01-28 15:00:10 +00:00
|
|
|
Version: 4.0
|
2013-09-26 05:04:36 +00:00
|
|
|
Release: 0
|
2007-01-15 23:18:36 +00:00
|
|
|
Summary: A Parser and Scanner Generator for Java
|
2011-12-06 17:20:28 +00:00
|
|
|
License: BSD-3-Clause
|
2013-09-26 05:04:36 +00:00
|
|
|
Group: Development/Libraries/Java
|
2008-01-28 15:00:10 +00:00
|
|
|
Source0: %{name}-%{version}src.tar.gz
|
2007-01-15 23:18:36 +00:00
|
|
|
Source1: javacc
|
|
|
|
Source2: jjdoc
|
|
|
|
Source3: jjtree
|
2008-01-28 15:00:10 +00:00
|
|
|
Patch: javacc.patch
|
|
|
|
Url: https://javacc.dev.java.net/
|
2007-01-15 23:18:36 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
BuildArch: noarch
|
2013-09-26 05:04:36 +00:00
|
|
|
Requires: javapackages-tools
|
|
|
|
BuildRequires: ant
|
|
|
|
BuildRequires: java-1_5_0-gcj-compat-devel
|
|
|
|
BuildRequires: xml-commons-apis
|
2007-01-15 23:18:36 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
Java Compiler Compiler (JavaCC) is the most popular parser generator
|
|
|
|
for use with Java applications. A parser generator is a tool that reads
|
|
|
|
a grammar specification and converts it to a Java program that can
|
|
|
|
recognize matches to the grammar. In addition to the parser generator
|
|
|
|
itself, JavaCC provides other standard capabilities related to parser
|
|
|
|
generation such as tree building (via a tool called JJTree included
|
|
|
|
with JavaCC), actions, debugging, etc.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%package manual
|
|
|
|
Summary: A Parser and Scanner Generator for Java
|
|
|
|
Group: Development/Libraries/Java
|
|
|
|
|
|
|
|
%description manual
|
|
|
|
Java Compiler Compiler (JavaCC) is the most popular parser generator
|
|
|
|
for use with Java applications. A parser generator is a tool that reads
|
|
|
|
a grammar specification and converts it to a Java program that can
|
|
|
|
recognize matches to the grammar. In addition to the parser generator
|
|
|
|
itself, JavaCC provides other standard capabilities related to parser
|
|
|
|
generation such as tree building (via a tool called JJTree included
|
|
|
|
with JavaCC), actions, debugging, etc.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%package demo
|
|
|
|
Summary: A Parser and Scanner Generator for Java
|
|
|
|
Group: Development/Libraries/Java
|
|
|
|
|
|
|
|
%description demo
|
|
|
|
Java Compiler Compiler (JavaCC) is the most popular parser generator
|
|
|
|
for use with Java applications. A parser generator is a tool that reads
|
|
|
|
a grammar specification and converts it to a Java program that can
|
|
|
|
recognize matches to the grammar. In addition to the parser generator
|
|
|
|
itself, JavaCC provides other standard capabilities related to parser
|
|
|
|
generation such as tree building (via a tool called JJTree included
|
|
|
|
with JavaCC), actions, debugging, etc.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
2008-01-28 15:00:10 +00:00
|
|
|
%setup -n javacc
|
|
|
|
%patch -p1
|
2007-01-15 23:18:36 +00:00
|
|
|
cp %{SOURCE1} javacc
|
|
|
|
cp %{SOURCE2} jjdoc
|
|
|
|
cp %{SOURCE3} jjtree
|
|
|
|
mv www/doc .
|
|
|
|
|
|
|
|
%build
|
|
|
|
for file in `find -name build.xml` ; do
|
|
|
|
if ! grep -q "javac.*source=" $file ; then
|
|
|
|
perl -p -i -e 's|<javac |<javac source=\"1.4\" |' $file
|
2008-01-28 15:00:10 +00:00
|
|
|
perl -p -i -e 's|<javadoc |<javadoc source=\"1.4" |' $file
|
2007-01-15 23:18:36 +00:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
ant \
|
|
|
|
-Dversion=%{version} \
|
|
|
|
jar
|
|
|
|
|
|
|
|
%install
|
|
|
|
install -d -m 755 $RPM_BUILD_ROOT%{_javadir}
|
|
|
|
install -m 644 bin/lib/%{name}.jar $RPM_BUILD_ROOT%{_javadir}/%{name}-%{version}.jar
|
|
|
|
ln -s %{name}-%{version}.jar $RPM_BUILD_ROOT%{_javadir}/%{name}.jar
|
|
|
|
install -d -m 755 $RPM_BUILD_ROOT/usr/bin
|
|
|
|
install -m 755 javacc jjdoc jjtree $RPM_BUILD_ROOT/usr/bin
|
|
|
|
install -d -m 755 $RPM_BUILD_ROOT/usr/share/%{name}
|
|
|
|
cp -pr examples $RPM_BUILD_ROOT/usr/share/%{name}
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(0644,root,root,0755)
|
|
|
|
%{_javadir}/*.jar
|
|
|
|
%doc LICENSE README
|
|
|
|
%defattr(0755,root,root,0755)
|
|
|
|
/usr/bin/*
|
|
|
|
|
|
|
|
%files manual
|
|
|
|
%defattr(0644,root,root,0755)
|
|
|
|
%doc doc/*
|
|
|
|
|
|
|
|
%files demo
|
|
|
|
%defattr(0644,root,root,0755)
|
|
|
|
/usr/share/%{name}/
|
|
|
|
|
2008-01-28 15:00:10 +00:00
|
|
|
%changelog
|