| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- ##
- ## flex.spec -- OpenPKG RPM Specification
- ## Copyright (c) 2000-2004 The OpenPKG Project <http://www.openpkg.org/>
- ## Copyright (c) 2000-2004 Ralf S. Engelschall <rse@engelschall.com>
- ## Copyright (c) 2000-2004 Cable & Wireless <http://www.cw.com/>
- ##
- ## Permission to use, copy, modify, and distribute this software for
- ## any purpose with or without fee is hereby granted, provided that
- ## the above copyright notice and this permission notice appear in all
- ## copies.
- ##
- ## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 AUTHORS AND COPYRIGHT HOLDERS AND THEIR
- ## 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.
- ##
- # package versions
- %define V_release 2.5.4a
- %define V_release_maj 2.5.4
- %define V_beta 2.5.31
- # package information
- Name: flex
- Summary: Fast Lexical Analyzer Generator
- URL: http://www.gnu.org/software/flex/
- Vendor: Free Software Foundation
- Packager: The OpenPKG Project
- Distribution: OpenPKG
- Class: CORE
- Group: Language
- License: BSD
- Version: %{V_release}
- Release: 20040205
- # package options
- %option with_beta no
- # list of sources
- Source0: ftp://ftp.gnu.org/non-gnu/flex/flex-%{V_release}.tar.gz
- Source1: http://osdn.dl.sourceforge.net/sourceforge/lex/flex-%{V_beta}.tar.gz
- Patch0: flex.patch
- # build information
- Prefix: %{l_prefix}
- BuildRoot: %{l_buildroot}
- BuildPreReq: OpenPKG, openpkg >= 20040130, bison, make
- PreReq: OpenPKG, openpkg >= 20040130
- AutoReq: no
- AutoReqProv: no
- %description
- Flex is a tool for generating scanners: programs which recognized lexical
- patterns in text. flex reads the given input files for a description of a
- scanner to generate. The description is in the form of pairs of regular
- expressions and C code, called rules. flex generates as output a C source
- file, lex.yy.c, which defines a routine yylex(). This file is compiled and
- linked with the -lfl library to produce an executable. When the executable
- is run, it analyzes its input for occurrences of the regular expressions.
- Whenever it finds one, it executes the corresponding C code.
- %track
- prog flex:release = {
- version = 2.5.4a
- url = ftp://ftp.gnu.org/non-gnu/flex/
- regex = flex-(__VER__)\.tar\.gz
- }
- prog flex:beta = {
- comment = "see also http://astro.temple.edu/~john43/flex/"
- version = 2.5.31
- url = http://prdownloads.sourceforge.net/lex/
- regex = flex-(__VER__)\.tar\.gz
- }
- %prep
- %setup -q -c -n flex-%{version}
- %if "%{with_beta}" == "yes"
- %setup -q -T -D -a 1
- ( cd flex-%{V_beta}
- %patch -p0
- ) || exit $?
- %endif
- %build
- # configure and build Flex (stable version)
- ( cd flex-%{V_release_maj}
- CC="%{l_cc}" \
- CFLAGS="%{l_cflags -O}" \
- ./configure \
- --prefix=$RPM_BUILD_ROOT%{l_prefix}
- %{l_make} %{l_mflags}
- ) || exit $?
- # configure and build Flex (beta version)
- %if "%{with_beta}" == "yes"
- ( cd flex-%{V_beta}
- CC="%{l_cc}" \
- CFLAGS="%{l_cflags -O}" \
- HELP2MAN=`type -P true` \
- ./configure \
- --prefix=%{l_prefix} \
- --disable-nls
- cp -rp doc/flex.1 doc/flex.1.saved
- %{l_make} %{l_mflags}
- ) || exit $?
- %endif
- %install
- rm -rf $RPM_BUILD_ROOT
- # install Flex (beta version)
- %if "%{with_beta}" == "yes"
- ( cd flex-%{V_beta}
- %{l_make} %{l_mflags} install AM_MAKEFLAGS="DESTDIR=$RPM_BUILD_ROOT"
- mv $RPM_BUILD_ROOT%{l_prefix}/bin/flex \
- $RPM_BUILD_ROOT%{l_prefix}/bin/flex-beta
- mv $RPM_BUILD_ROOT%{l_prefix}/include/FlexLexer.h \
- $RPM_BUILD_ROOT%{l_prefix}/include/FlexLexer-beta.h
- mv $RPM_BUILD_ROOT%{l_prefix}/lib/libfl.a \
- $RPM_BUILD_ROOT%{l_prefix}/lib/libfl-beta.a
- mv doc/flex.1.saved \
- $RPM_BUILD_ROOT%{l_prefix}/man/man1/flex-beta.1
- ) || exit $?
- %endif
- # install Flex (stable version)
- ( cd flex-%{V_release_maj}
- %{l_make} %{l_mflags} install
- rm -f $RPM_BUILD_ROOT%{l_prefix}/bin/flex++
- ) || exit $?
- # strip down installation
- rm -f $RPM_BUILD_ROOT%{l_prefix}/info/dir
- strip $RPM_BUILD_ROOT%{l_prefix}/bin/* >/dev/null 2>&1 || true
- # determine installation files
- %{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT %{l_files_std}
- %files -f files
- %clean
- rm -rf $RPM_BUILD_ROOT
|