| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- ##
- ## scribus.spec -- OpenPKG RPM Package Specification
- ## Copyright (c) 2000-2007 OpenPKG Foundation e.V. <http://openpkg.net/>
- ## Copyright (c) 2000-2007 Ralf S. Engelschall <http://engelschall.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 information
- Name: scribus
- Summary: Desktop Publishing Application
- URL: http://www.scribus.net/
- Vendor: Franz Schmid
- Packager: OpenPKG Foundation e.V.
- Distribution: OpenPKG Community
- Class: EVAL
- Group: DTP
- License: GPL
- Version: 1.3.3.7
- Release: 20070110
- # list of sources
- Source0: http://www.scribus.net/downloads/%{version}/scribus-%{version}.tar.bz2
- Patch0: scribus.patch
- # build information
- Prefix: %{l_prefix}
- BuildRoot: %{l_buildroot}
- BuildPreReq: OpenPKG, openpkg >= 20040130, qt, freetype, libart
- PreReq: OpenPKG, openpkg >= 20040130, qt, freetype, libart
- BuildPreReq: ghostscript, png, jpeg, tiff, zlib, lcms, pkgconfig, make
- PreReq: ghostscript, png, jpeg, tiff, zlib, lcms, gimp
- 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.
- %track
- prog scribus = {
- version = %{version}
- url = http://www.scribus.net/modules.php?op=modload&name=Downloads&file=index
- regex = (1\.\d+(\.\d+)*).Release
- }
- %prep
- %setup -q
- %patch -p0
- %{l_shtool} subst \
- -e 's; ! -f $libstdcpp;;g' \
- -e 's;^\(jpeg_incdirs="\)[^"]*\("\);\1%{l_prefix}/include\2;' \
- configure
- %build
- CC="%{l_cc}" \
- CXX="%{l_cxx}" \
- CFLAGS="%{l_cflags -O} `%{l_prefix}/bin/pkg-config --cflags-only-other qt`" \
- CXXFLAGS="%{l_cxxflags -O} `%{l_prefix}/bin/pkg-config --cflags-only-other qt`" \
- CPPFLAGS="%{l_cppflags tiff} `%{l_prefix}/bin/pkg-config --cflags-only-I qt`" \
- LDFLAGS="%{l_ldflags} `%{l_prefix}/bin/pkg-config --libs-only-L qt`" \
- LIBS="$LIBS `%{l_prefix}/bin/pkg-config --libs-only-l --libs-only-other qt`" \
- ./configure \
- --prefix=%{l_prefix} \
- --disable-threading \
- --disable-shared \
- --enable-static \
- --with-x \
- --x-includes=`%{l_rc} --query x11_incdir` \
- --x-libraries=`%{l_rc} --query x11_libdir`\
- --with-qt-dir=%{l_prefix} \
- --with-qt-includes=%{l_prefix}/include/qt/ \
- --with-qt-libraries=%{l_prefix}/lib/
- %{l_make} %{l_mflags -O}
- %install
- rm -rf $RPM_BUILD_ROOT
- %{l_make} %{l_mflags} install AM_MAKEFLAGS="DESTDIR=$RPM_BUILD_ROOT"
- rm -rf $RPM_BUILD_ROOT%{l_prefix}/share/scribus/doc/cr
- rm -rf $RPM_BUILD_ROOT%{l_prefix}/share/scribus/doc/fr
- rm -rf $RPM_BUILD_ROOT%{l_prefix}/share/scribus/doc/pl
- rm -rf $RPM_BUILD_ROOT%{l_prefix}/man/pl
- %{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT %{l_files_std}
- %files -f files
- %clean
- rm -rf $RPM_BUILD_ROOT
|