Deepak Bhole b67f63
# Copyright (c) 2000-2005, JPackage Project
Deepak Bhole b67f63
# All rights reserved.
Deepak Bhole b67f63
#
Deepak Bhole b67f63
# Redistribution and use in source and binary forms, with or without
Deepak Bhole b67f63
# modification, are permitted provided that the following conditions
Deepak Bhole b67f63
# are met:
Deepak Bhole b67f63
#
Deepak Bhole b67f63
# 1. Redistributions of source code must retain the above copyright
Deepak Bhole b67f63
#    notice, this list of conditions and the following disclaimer.
Deepak Bhole b67f63
# 2. Redistributions in binary form must reproduce the above copyright
Deepak Bhole b67f63
#    notice, this list of conditions and the following disclaimer in the
Deepak Bhole b67f63
#    documentation and/or other materials provided with the
Deepak Bhole b67f63
#    distribution.
Deepak Bhole b67f63
# 3. Neither the name of the JPackage Project nor the names of its
Deepak Bhole b67f63
#    contributors may be used to endorse or promote products derived
Deepak Bhole b67f63
#    from this software without specific prior written permission.
Deepak Bhole b67f63
#
Deepak Bhole b67f63
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
Deepak Bhole b67f63
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
Deepak Bhole b67f63
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
Deepak Bhole b67f63
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
Deepak Bhole b67f63
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
Deepak Bhole b67f63
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
Deepak Bhole b67f63
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
Deepak Bhole b67f63
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
Deepak Bhole b67f63
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
Deepak Bhole b67f63
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Deepak Bhole b67f63
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Deepak Bhole b67f63
#
Deepak Bhole b67f63
Deepak Bhole 2a363a
%define _with_gcj_support 1
Deepak Bhole 2a363a
Deepak Bhole b67f63
%define gcj_support %{?_with_gcj_support:1}%{!?_with_gcj_support:%{?_without_gcj_support:0}%{!?_without_gcj_support:%{?_gcj_support:%{_gcj_support}}%{!?_gcj_support:0}}}
Deepak Bhole bbb3e1
%define build_jedit  %{?_with_jedit:1}%{!?_with_jedit:0}
Deepak Bhole b67f63
cvsdist a8926f
%define section free
Deepak Bhole bbb3e1
%define native  %{?_with_native:1}%{!?_with_native:0}
gbenson 5f54d4
cvsdist a8926f
Summary:        ANother Tool for Language Recognition
cvsdist a8926f
Name:           antlr
Deepak Bhole bacd47
Version:        2.7.7
Jesse Keating c25aeb
Release:        6%{?dist}
cvsdist a8926f
Epoch:          0
cvsdist a8926f
License:        Public Domain
cvsdist a8926f
URL:            http://www.antlr.org/
cvsdist a8926f
Group:          Development/Code Generators
Deepak Bhole b67f63
#http://www.antlr.org/download/antlr-%{version}.tar.gz
Deepak Bhole b67f63
Source0:        antlr-%{version}-RHCLEAN.tar.gz
cvsdist a8926f
Source1:        %{name}-build.xml
cvsdist a8926f
Source2:        %{name}-script
Deepak Bhole b67f63
#http://www.antlr.org/share/1069557132934/makefile.gcj
Deepak Bhole b67f63
Source3:        makefile.gcj
cvsdist a8926f
Patch0:         %{name}-jedit.patch
Deepak Bhole 4fecb5
Patch1:         %{name}-%{version}-newgcc.patch
cvsdist a8926f
BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-buildroot
cvsdist a8926f
gbenson 0107a2
%if %{native}
gbenson 0107a2
BuildRequires:  %{_bindir}/gcj, %{__make}
gbenson 0107a2
%else
gbenson 0107a2
BuildRequires:  ant
Deepak Bhole 8c8c51
Dennis Gilmore fec2a7
%ifnarch s390 s390x ppc64 sparc64
Deepak Bhole bacd47
BuildRequires:  mono-core
Deepak Bhole bacd47
BuildRequires:  mono-winforms
Deepak Bhole 8c8c51
%endif
Deepak Bhole 8c8c51
gbenson 0107a2
BuildRequires:  %{__perl}, java-javadoc
cvsdist a8926f
Requires:       jpackage-utils
gbenson 0107a2
Requires(post): %{_sbindir}/update-alternatives
gbenson 0107a2
Requires(postun): %{_sbindir}/update-alternatives
gbenson 0107a2
%endif
cvsdist a8926f
Deepak Bhole b67f63
%if %{gcj_support}
Deepak Bhole b67f63
BuildRequires:		java-gcj-compat-devel
Deepak Bhole b67f63
Requires(post):		java-gcj-compat
Deepak Bhole b67f63
Requires(postun):	java-gcj-compat
Deepak Bhole b67f63
%endif
Deepak Bhole b67f63
cvsdist a8926f
%description
cvsdist a8926f
ANTLR, ANother Tool for Language Recognition, (formerly PCCTS) is a
cvsdist a8926f
language tool that provides a framework for constructing recognizers,
cvsdist a8926f
compilers, and translators from grammatical descriptions containing
cvsdist a8926f
C++ or Java actions [You can use PCCTS 1.xx to generate C-based
cvsdist a8926f
parsers].
cvsdist a8926f
gbenson 0107a2
%package        native
gbenson 0107a2
Group:          Development/Code Generators
gbenson 0107a2
Summary:        ANother Tool for Language Recognition (native version)
gbenson 0107a2
Requires(post): %{_sbindir}/update-alternatives
gbenson 0107a2
Requires(postun): %{_sbindir}/update-alternatives
gbenson 0107a2
Deepak Bhole b67f63
%if %{gcj_support}
Deepak Bhole b67f63
BuildRequires:		java-gcj-compat-devel
Deepak Bhole b67f63
Requires(post):		java-gcj-compat
Deepak Bhole b67f63
Requires(postun):	java-gcj-compat
Deepak Bhole b67f63
%endif
Deepak Bhole b67f63
gbenson 0107a2
%description    native
gbenson 0107a2
ANTLR, ANother Tool for Language Recognition, (formerly PCCTS) is a
gbenson 0107a2
language tool that provides a framework for constructing recognizers,
gbenson 0107a2
compilers, and translators from grammatical descriptions containing
gbenson 0107a2
C++ or Java actions [You can use PCCTS 1.xx to generate C-based
gbenson 0107a2
parsers].  This package includes the native version of the antlr tool.
gbenson 0107a2
cvsdist a8926f
%package        manual
cvsdist a8926f
Group:          Development/Code Generators
cvsdist a8926f
Summary:        Manual for %{name}
cvsdist a8926f
cvsdist a8926f
%description    manual
cvsdist a8926f
Documentation for %{name}.
cvsdist a8926f
cvsdist a8926f
%package        javadoc
cvsdist a8926f
Group:          Development/Documentation
cvsdist a8926f
Summary:        Javadoc for %{name}
Deepak Bhole a5752c
Requires(post):   /bin/rm,/bin/ln
Deepak Bhole a5752c
Requires(postun): /bin/rm
cvsdist a8926f
cvsdist a8926f
%description    javadoc
cvsdist a8926f
Javadoc for %{name}.
cvsdist a8926f
Deepak Bhole c963da
%if %{build_jedit}
cvsdist a8926f
%package        jedit
cvsdist a8926f
Group:          Text Editors
cvsdist a8926f
Summary:        ANTLR mode for jEdit
cvsdist a8926f
Requires:       jedit >= 0:4.1
cvsdist a8926f
cvsdist a8926f
%description    jedit
cvsdist a8926f
ANTLR mode for jEdit.  To enable this mode, insert the following into your
cvsdist a8926f
%{_datadir}/jedit/modes/catalog:
cvsdist a8926f
cvsdist a8926f
  <MODE NAME="antlr" FILE="antlr.xml" FILE_NAME_GLOB="*.g"/>
Deepak Bhole c963da
%endif
cvsdist a8926f
cvsdist a8926f
%prep
cvsdist a8926f
%setup -q
cvsdist a8926f
# remove all binary libs
cvsdist a8926f
find . -name "*.jar" -exec rm -f {} \;
gbenson 0107a2
%if !%{native}
gbenson 0107a2
%patch0 -p0
gbenson 0107a2
cp -p %{SOURCE1} build.xml
cvsdist a8926f
# fixup paths to manual
gbenson 0107a2
%{__perl} -pi -e 's|"doc/|"%{_docdir}/%{name}-manual-%{version}/|g' \
cvsdist a8926f
  install.html
gbenson 0107a2
%endif
cvsdist a8926f
Deepak Bhole dd2e1b
%patch1
cvsdist a8926f
cvsdist a8926f
%build
gbenson 0107a2
%if %{native}
gbenson 0107a2
%{__make} -f %{SOURCE3} COMPOPTS="$RPM_OPT_FLAGS"
gbenson 0107a2
gbenson 0107a2
%else
vadimn bb16e4
ant -Dj2se.apidoc=%{_javadocdir}/java
Deepak Bhole bacd47
cp work/lib/antlr.jar .  # make expects to find it here
Deepak Bhole bacd47
export CLASSPATH=.
Deepak Bhole bacd47
%configure --without-examples
Deepak Bhole 9abadc
make CXXFLAGS="${CXXFLAGS} -fPIC"
Deepak Bhole 2002c3
Deepak Bhole bacd47
find . -type f > /tmp/antlr.filelist
Deepak Bhole bacd47
rm antlr.jar             # no longer needed
gbenson 0107a2
%endif
cvsdist a8926f
cvsdist a8926f
cvsdist a8926f
%install
cvsdist a8926f
rm -rf $RPM_BUILD_ROOT
cvsdist a8926f
gbenson 0107a2
install -dm 755 $RPM_BUILD_ROOT%{_bindir}
gbenson 0107a2
touch $RPM_BUILD_ROOT%{_bindir}/antlr # for %%ghost
gbenson 0107a2
gbenson 0107a2
%if %{native}
gbenson 0107a2
gbenson 0107a2
install -pm 755 cantlr $RPM_BUILD_ROOT%{_bindir}/antlr-native
gbenson 0107a2
gbenson 0107a2
%else
cvsdist a8926f
# jars
cvsdist a8926f
mkdir -p $RPM_BUILD_ROOT%{_javadir}
cvsdist a8926f
cp -p work/lib/%{name}.jar $RPM_BUILD_ROOT%{_javadir}/%{name}-%{version}.jar
cvsdist a8926f
(cd $RPM_BUILD_ROOT%{_javadir} && for jar in *-%{version}.jar; do ln -sf ${jar} `echo $jar| sed "s|-%{version}||g"`; done)
cvsdist a8926f
gbenson 0107a2
# script
gbenson 0107a2
cp -p %{SOURCE2} $RPM_BUILD_ROOT%{_bindir}/antlr-java
cvsdist a8926f
Deepak Bhole bacd47
# C++ lib and headers, antlr-config
Deepak Bhole bacd47
%define headers %{_includedir}/%{name}
Deepak Bhole bacd47
Deepak Bhole bacd47
mkdir -p $RPM_BUILD_ROOT{%{headers},%{_libdir}}
Deepak Bhole bacd47
install -m 644 lib/cpp/antlr/*.hpp $RPM_BUILD_ROOT%{headers}
Deepak Bhole bacd47
install -m 644 lib/cpp/src/libantlr.a $RPM_BUILD_ROOT%{_libdir}
Deepak Bhole bacd47
install -m 755 scripts/antlr-config $RPM_BUILD_ROOT%{_bindir}
Deepak Bhole bacd47
cvsdist a8926f
# javadoc
cvsdist a8926f
mkdir -p $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}
Thomas Fitzsimmons 749519
cp -pr work/api/* $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}
cvsdist a8926f
ln -s %{name}-%{version} $RPM_BUILD_ROOT%{_javadocdir}/%{name}
cvsdist a8926f
cvsdist a8926f
# jedit mode
Deepak Bhole c963da
%if %{build_jedit}
cvsdist a8926f
mkdir -p $RPM_BUILD_ROOT%{_datadir}/jedit/modes
cvsdist a8926f
cp -p extras/antlr-jedit.xml $RPM_BUILD_ROOT%{_datadir}/jedit/modes/antlr.xml
gbenson 5f54d4
%endif
Deepak Bhole c963da
%endif
cvsdist a8926f
cvsdist a8926f
Deepak Bhole b67f63
%if %{gcj_support}
Deepak Bhole b67f63
%{_bindir}/aot-compile-rpm
Deepak Bhole b67f63
%endif
Deepak Bhole b67f63
cvsdist a8926f
%clean
cvsdist a8926f
rm -rf $RPM_BUILD_ROOT
cvsdist a8926f
cvsdist a8926f
gbenson 0107a2
%post
gbenson 0107a2
%{_sbindir}/update-alternatives --install %{_bindir}/antlr \
gbenson 0107a2
  %{name} %{_bindir}/antlr-java 10
gbenson 0107a2
Deepak Bhole b67f63
%if %{gcj_support}
Deepak Bhole b67f63
if [ -x %{_bindir}/rebuild-gcj-db ]
Deepak Bhole b67f63
then
Deepak Bhole b67f63
  %{_bindir}/rebuild-gcj-db
Deepak Bhole b67f63
fi
Deepak Bhole b67f63
%endif
Deepak Bhole b67f63
gbenson 0107a2
%postun
gbenson 0107a2
if [ $1 -eq 0 ] ; then
gbenson 0107a2
  %{_sbindir}/update-alternatives --remove %{name} %{_bindir}/antlr-java
gbenson 0107a2
fi
gbenson 0107a2
gbenson 0107a2
%if %{native}
Deepak Bhole b67f63
%if %{gcj_support}
Deepak Bhole b67f63
if [ -x %{_bindir}/rebuild-gcj-db ]
Deepak Bhole b67f63
then
Deepak Bhole b67f63
  %{_bindir}/rebuild-gcj-db
Deepak Bhole b67f63
fi
Deepak Bhole b67f63
%endif
Deepak Bhole b67f63
gbenson 0107a2
%post native
gbenson 0107a2
%{_sbindir}/update-alternatives --install %{_bindir}/antlr \
gbenson 0107a2
  %{name} %{_bindir}/antlr-native 20
gbenson 0107a2
Deepak Bhole b67f63
%if %{gcj_support}
Deepak Bhole b67f63
if [ -x %{_bindir}/rebuild-gcj-db ]
Deepak Bhole b67f63
then
Deepak Bhole b67f63
  %{_bindir}/rebuild-gcj-db
Deepak Bhole b67f63
fi
Deepak Bhole b67f63
%endif
Deepak Bhole b67f63
gbenson 0107a2
%postun native
gbenson 0107a2
if [ $1 -eq 0 ] ; then
gbenson 0107a2
  %{_sbindir}/update-alternatives --remove %{name} %{_bindir}/antlr-native
gbenson 0107a2
fi
gbenson 0107a2
%endif
gbenson 0107a2
Deepak Bhole b67f63
%if %{gcj_support}
Deepak Bhole b67f63
if [ -x %{_bindir}/rebuild-gcj-db ]
Deepak Bhole b67f63
then
Deepak Bhole b67f63
  %{_bindir}/rebuild-gcj-db
Deepak Bhole b67f63
fi
Deepak Bhole b67f63
%endif
Deepak Bhole b67f63
cvsdist a8926f
%post javadoc
cvsdist a8926f
rm -f %{_javadocdir}/%{name}
cvsdist a8926f
ln -s %{name}-%{version} %{_javadocdir}/%{name}
cvsdist a8926f
Deepak Bhole cc79e4
%postun javadoc
Deepak Bhole cc79e4
if [ $1 -eq 0 ]; then
Deepak Bhole cc79e4
  %{__rm} -f %{_javadocdir}/%{name}
Deepak Bhole cc79e4
fi
cvsdist a8926f
gbenson 0107a2
%if %{native}
gbenson 0107a2
%files native
gbenson 0107a2
%defattr(0644,root,root,0755)
Deepak Bhole b67f63
%doc INSTALL.txt LICENSE.txt
gbenson 0107a2
%defattr(0755,root,root,0755)
gbenson 0107a2
%ghost %{_bindir}/antlr
gbenson 0107a2
%{_bindir}/antlr-native
gbenson 0107a2
gbenson 0107a2
%else
cvsdist a8926f
%files
cvsdist a8926f
%defattr(0644,root,root,0755)
Deepak Bhole b67f63
%doc INSTALL.txt LICENSE.txt
gbenson 0107a2
%{_javadir}/%{name}*.jar
Deepak Bhole 3bb0b8
%{headers}
Deepak Bhole bacd47
%{_libdir}/libantlr.a
gbenson 0107a2
%defattr(0755,root,root,0755)
gbenson 0107a2
%ghost %{_bindir}/antlr
Deepak Bhole bacd47
%{_bindir}/antlr-config
gbenson 0107a2
%{_bindir}/antlr-java
cvsdist a8926f
Deepak Bhole b67f63
%if %{gcj_support}
Deepak Bhole b67f63
%attr(-,root,root) %{_libdir}/gcj/%{name}
Deepak Bhole b67f63
%endif
Deepak Bhole b67f63
cvsdist a8926f
%files manual
cvsdist a8926f
%defattr(0644,root,root,0755)
cvsdist a8926f
%doc doc/*
cvsdist a8926f
cvsdist a8926f
%files javadoc
cvsdist a8926f
%defattr(0644,root,root,0755)
cvsdist a8926f
%doc %{_javadocdir}/%{name}-%{version}
cvsdist a8926f
%ghost %doc %{_javadocdir}/%{name}
cvsdist a8926f
Deepak Bhole c963da
%if %{build_jedit}
cvsdist a8926f
%files jedit
cvsdist a8926f
%defattr(0644,root,root,0755)
cvsdist a8926f
%{_datadir}/jedit/modes/*
gbenson 5f54d4
%endif
Deepak Bhole c963da
%endif
cvsdist a8926f
cvsdist a8926f
cvsdist a8926f
%changelog
Jesse Keating c25aeb
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.7.7-6
Jesse Keating c25aeb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
Jesse Keating c25aeb
Deepak Bhole 4fecb5
* Fri Mar 20 2009 Deepak Bhole <dbhole@redhat.com> - 0:2.7.7-5
Deepak Bhole 4fecb5
- Include cstdio in CharScanner.hpp (needed to build with GCC 4.4)
Deepak Bhole 4fecb5
- Merge changes from includestrings patch into the above one
Deepak Bhole 4fecb5
Jesse Keating b9a27a
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.7.7-4
Jesse Keating b9a27a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
Jesse Keating b9a27a
Dennis Gilmore fec2a7
* Fri Jan 09 2009 Dennis Gilmore <dennis@ausil.us> 2.7.7-3
Dennis Gilmore fec2a7
- exlcude using mono on sparc64
Dennis Gilmore fec2a7
Tom Callaway fdf4ae
* Wed Jul  9 2008 Tom "spot" Callaway <tcallawa@redhat.com> 2.7.7-2
Tom Callaway fdf4ae
- drop repotag
Tom Callaway fdf4ae
Deepak Bhole ed0e04
* Wed Feb 27 2008 Deepak Bhole <dbhole@redhat.com> - 0:2.7.7-1jpp.7
Deepak Bhole dd2e1b
- Add strings inclusion (for GCC 4.3)
Jesse Keating f712c6
Deepak Bhole ed0e04
* Mon Sep 24 2007 Deepak Bhole <dbhole@redhat.com> - 0:2.7.7-1jpp.6
Deepak Bhole 9abadc
- Resolve bz# 242305: Remove libantlr-pic.a, and compile libantlr.a with fPIC
Deepak Bhole 9abadc
Jesse Keating 0d25c0
* Wed Aug 29 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 2.7.7-1jpp.5
Jesse Keating 0d25c0
- Rebuild for selinux ppc32 issue.
Jesse Keating 0d25c0
Deepak Bhole 2002c3
* Tue Jun 12 2007 Deepak Bhole <dbhole@redhat.com> 2.7.7-1jpp.4.fc8
Deepak Bhole 2002c3
- Added a PIC compiled archive (bz# 242305)
Deepak Bhole 2002c3
Deepak Bhole bbb3e1
* Thu Jun 07 2007 Deepak Bhole <dbhole@redhat.com> 2.7.7-1jpp.3
Deepak Bhole bbb3e1
- Applied patch to fix conditionals (from skasal at redhat dot com)
Deepak Bhole bbb3e1
Deepak Bhole 3bb0b8
* Mon Mar 26 2007 Deepak Bhole <dbhole@redhat.com> 2.7.7-1jpp.2
Deepak Bhole 3bb0b8
- Added unowned dir to files list
Deepak Bhole 3bb0b8
Deepak Bhole bacd47
* Fri Jan 19 2007 Deepak Bhole <dbhole@redhat.com> 0:2.7.7-1jpp.1
Deepak Bhole bacd47
- Upgrade to 2.7.7
Deepak Bhole bacd47
- Resolve 172456 with patches from Vadim Nasardinov and Radu Greab
Deepak Bhole bacd47
Deepak Bhole cc79e4
* Thu Aug 03 2006 Deepak Bhole <dbhole@redhat.com> = 0:2.7.6-4jpp.2
Deepak Bhole cc79e4
- Add missing postun for javadoc.
Deepak Bhole cc79e4
Deepak Bhole a5752c
* Thu Aug 03 2006 Deepak Bhole <dbhole@redhat.com> = 0:2.7.6-4jpp.1
Deepak Bhole a5752c
- Add missing requirements.
Deepak Bhole a5752c
Thomas Fitzsimmons 749519
* Sat Jul 22 2006 Thomas Fitzsimmons <fitzsim@redhat.com> - 0:2.7.6-3jpp_5fc
Thomas Fitzsimmons 749519
- Unstub docs.
Thomas Fitzsimmons 749519
Jakub Jelinek 745f74
* Sat Jul 22 2006 Jakub Jelinek <jakub@redhat.com> - 0:2.7.6-3jpp_4fc
Jakub Jelinek 745f74
- Remove hack-libgcj requirement.
Jakub Jelinek 745f74
Thomas Fitzsimmons a16b53
* Fri Jul 21 2006 Thomas Fitzsimmons <fitzsim@redhat.com> - 0:2.7.6-3jpp_3fc
Thomas Fitzsimmons bbfd31
- Stub docs. (dist-fc6-java)
Thomas Fitzsimmons bbfd31
- Require hack-libgcj for build. (dist-fc6-java)
Thomas Fitzsimmons a16b53
- Bump release number.
Thomas Fitzsimmons a16b53
Deepak Bhole a5752c
* Wed Jul 19 2006 Deepak Bhole <dbhole@redhat.com> = 0:2.7.6-3jpp_2fc
Deepak Bhole c963da
- From gbenson@redhat:
Deepak Bhole c963da
-   Omit the jedit subpackage to fix dependencies. 
Deepak Bhole c963da
Deepak Bhole a5752c
* Wed Jul 19 2006 Deepak Bhole <dbhole@redhat.com> = 0:2.7.6-3jpp_1fc
Deepak Bhole b67f63
- Added conditional native compilation.
Jesse Keating ed9903
Deepak Bhole b67f63
* Fri Jan 13 2006 Fernando Nasser <fnasser@redhat.com> - 0:2.7.6-2jpp
Deepak Bhole b67f63
- First JPP 1.7 build
Jesse Keating 01cf1f
Deepak Bhole b67f63
* Fri Jan 13 2006 Fernando Nasser <fnasser@redhat.com> - 0:2.7.6-1jpp
Deepak Bhole b67f63
- Update to 2.7.6.
gbenson edeeea
gbenson 0107a2
* Fri Aug 20 2004 Ralph Apel <r.apel at r-apel.de> - 0:2.7.4-2jpp
gbenson 0107a2
- Build with ant-1.6.2.
gbenson 0107a2
- Made native scripts conditional
gbenson 0107a2
gbenson 0107a2
* Tue May 18 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:2.7.4-1jpp
gbenson 0107a2
- Update to 2.7.4.
gbenson 0107a2
gbenson 0107a2
* Fri Apr  2 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:2.7.3-2jpp
gbenson 0107a2
- Create alternatives also on upgrades.
gbenson 0107a2
gbenson 0107a2
* Wed Mar 31 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:2.7.3-1jpp
gbenson 0107a2
- Update to 2.7.3.
gbenson 0107a2
- Include gcj build option and a native subpackage, build using
gbenson 0107a2
  "--with native" to get that.
gbenson 0107a2
- Add %{_bindir}/antlr alternative.
gbenson 0107a2
cvsdist a8926f
* Mon Dec 15 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:2.7.2-3jpp
cvsdist a8926f
- Add non-versioned javadoc dir symlink.
cvsdist a8926f
- Crosslink with local J2SE javadocs.
cvsdist a8926f
- Spec cleanups, change to UTF-8.
cvsdist a8926f
cvsdist a8926f
* Sun Mar 30 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:2.7.2-2jpp
cvsdist a8926f
- Rebuild for JPackage 1.5.
cvsdist a8926f
cvsdist a8926f
* Sat Mar  1 2003 Ville Skyttä <ville.skytta at iki.fi> - 2.7.2-1jpp
cvsdist a8926f
- Update to 2.7.2.
cvsdist a8926f
- Include antlr script and jEdit mode (see antlr-jedit RPM description).
cvsdist a8926f
- Use sed instead of bash 2 extension when symlinking jars during build.
cvsdist a8926f
cvsdist a8926f
* Tue May 07 2002 Guillaume Rousse <guillomovitch@users.sourceforge.net> 2.7.1-8jpp
cvsdist a8926f
- really section macro
cvsdist a8926f
- hardcoded distribution and vendor tag
cvsdist a8926f
- group tag again
cvsdist a8926f
cvsdist a8926f
* Thu May 2 2002 Guillaume Rousse <guillomovitch@users.sourceforge.net> 2.7.1-7jpp
cvsdist a8926f
- distribution tag
cvsdist a8926f
- group tag
cvsdist a8926f
- section macro
cvsdist a8926f
cvsdist a8926f
* Fri Jan 18 2002 Guillaume Rousse <guillomovitch@users.sourceforge.net> 2.7.1-6jpp
cvsdist a8926f
- versioned dir for javadoc
cvsdist a8926f
- no dependencies for manual and javadoc packages
cvsdist a8926f
- additional sources in individual archives
cvsdist a8926f
cvsdist a8926f
* Sat Dec 1 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 2.7.1-5jpp
cvsdist a8926f
- javadoc in javadoc package
cvsdist a8926f
cvsdist a8926f
* Wed Nov 21 2001 Christian Zoffoli <czoffoli@littlepenguin.org> 2.7.1-4jpp
cvsdist a8926f
- removed packager tag
cvsdist a8926f
- new jpp extension
cvsdist a8926f
cvsdist a8926f
* Sat Oct 6 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 2.7.1-3jpp
cvsdist a8926f
- used a build file instead of makefile
cvsdist a8926f
- build classes instead of blindly jared them !
cvsdist a8926f
- used original tarball
cvsdist a8926f
- corrected license spelling
cvsdist a8926f
cvsdist a8926f
* Sun Sep 30 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 2.7.1-2jpp
cvsdist a8926f
- first unified release
cvsdist a8926f
- s/jPackage/JPackage
cvsdist a8926f
cvsdist a8926f
* Tue Aug 28 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 2.7.1-1mdk
cvsdist a8926f
- first Mandrake release