| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- ##
- ## scribus.spec -- OpenPKG RPM Specification
- ## Copyright (c) 2000-2003 The OpenPKG Project <http://www.openpkg.org/>
- ## Copyright (c) 2000-2003 Ralf S. Engelschall <rse@engelschall.com>
- ## Copyright (c) 2000-2003 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.
- ##
- # FIXME: ms: Has JUNK status, it locks up during a fcntl(2) on FreeBSD.
- # FIXME: ms: Missing TIFF and JPEG logic, because of faulty configure.
- # package version
- %define V_dist 1.0
- %define V_opkg 1.0
- # package information
- Name: scribus
- Summary: Desktop Publishing Application
- URL: http://web2.altmuehlnet.de/fschmid/
- Vendor: Franz Schmid
- Packager: The OpenPKG Project
- Distribution: OpenPKG [JUNK]
- Group: Editor
- License: GPL
- Version: %{V_opkg}
- Release: 20030731
- # list of sources
- Source0: http://scribus.planetmirror.com/scribus-%{V_dist}.tar.gz
- Patch0: scribus.patch
- # build information
- Prefix: %{l_prefix}
- BuildRoot: %{l_buildroot}
- BuildPreReq: OpenPKG, openpkg >= 20030103, qt, freetype, ghostscript, png, jpeg, tiff, zlib
- PreReq: OpenPKG, openpkg >= 20030103, qt, freetype, ghostscript, png, jpeg, tiff, zlib
- AutoReq: no
- AutoReqProv: no
- %description
- Scribus is a Layout program similar to QuarkXPress, Adobe® PageMaker,
- or Adobe® InDesign. It has the ability to layout newsletters, create
- corporate stationery, small posters and other documents which need
- flexible layout and/or the ability to output to professional quality
- imagesetting equipment. Graphic formats which can be placed include
- EPS, JPEG, PNG, and XPM. Scribus also offers more advanced professional
- publishing features, such as CMYK color, easy PDF creation, Encapsulated
- Postscript import/export and creation of color separations.
- %prep
- %setup -q -n scribus-%{V_dist}
- %patch -p0
- %{l_shtool} subst \
- -e 's; ! -f $libstdcpp;;g' \
- configure
- %build
- case "%{l_target}" in
- *-freebsd*)
- LIBS="$LIBS -lX11 -lXext -lGL"
- ;;
- *-solaris* )
- LIBS="$LIBS -lrt"
- ;;
- esac
- X11INC=`%{l_prefix}/etc/rc --query x11_incdir`
- X11LIB=`%{l_prefix}/etc/rc --query x11_libdir`
- CC="%{l_cc}" \
- CXX="%{l_cxx}" \
- CFLAGS="%{l_cflags -O}" \
- CXXFLAGS="%{l_cxxflags -O}" \
- CPPFLAGS="%{l_cppflags tiff qt freetype2}" \
- LDFLAGS="%{l_ldflags} -L$X11LIB" \
- LIBS="$LIBS" \
- ./configure \
- --prefix=%{l_prefix} \
- --disable-shared \
- --enable-static \
- --with-x \
- --x-includes=$X11INC \
- --x-libraries=$X11LIB \
- --with-qt-dir=%{l_prefix} \
- --with-qt-includes=%{l_prefix}/include/qt/ \
- --with-qt-libraries=%{l_prefix}/lib/
- %{l_make} %{l_mflags -O} LIBS="$LIBS"
- %install
- rm -rf $RPM_BUILD_ROOT
- %{l_make} %{l_mflags} install AM_MAKEFLAGS="DESTDIR=$RPM_BUILD_ROOT"
- %{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT %{l_files_std}
- %files -f files
- %clean
- rm -rf $RPM_BUILD_ROOT
|