ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/CMSDIST/graphviz.spec
Revision: 1.11
Committed: Tue May 1 11:21:05 2007 UTC (18 years ago) by elmer
Branch: MAIN
CVS Tags: pe20070522a-ports, pe20070519a-ports, pe20070512a-ports, pe20070508a-ports, pe20070507a-ports, pe20070501c-ports, pe20070501b-ports, pe20070501a-ports
Changes since 1.10: +0 -2 lines
Log Message:
Remove gcc-wrappers stuff

File Contents

# Content
1 ### RPM external graphviz 1.9
2 Source: http://service-spi.web.cern.ch/service-spi/external/tarFiles/%{n}-%{v}.tar.gz
3 Requires: expat zlib libjpg libpng
4 Patch0: graphviz
5
6 %prep
7 %setup -n %{n}-%{v}
8 %patch0 -p1
9
10 %build
11 ./configure \
12 --with-expatlibdir=$EXPAT_ROOT/lib \
13 --with-expatincludedir=$EXPAT_ROOT/include \
14 --with-zincludedir=$ZLIB_ROOT/include \
15 --with-zlibdir=$ZLIB_ROOT/lib \
16 --with-pngincludedir=$LIBJPG_ROOT/include \
17 --with-pnglibdir=$LIBJPG_ROOT/lib \
18 --with-jpegincludedir=$LIBPNG_ROOT/include \
19 --with-jpeglibdir=$LIBPNG_ROOT/lib \
20 --without-x \
21 --without-tclsh \
22 --without-tcl \
23 --without-tk \
24 --prefix=%{i}
25 # This is a workaround for the fact that sort from coreutils 5.96 doesn't
26 # like "sort +0 -1", not really something specific to ppc64/ydl5.0
27 if [ "$(uname -m)" == "ppc64" ]
28 then
29 perl -p -i -e "s|\+0 \-1|-k1,1|g" dotneato/common/Makefile
30 fi
31 make
32 %post
33 perl -p -i -e "s|%instroot|$RPM_INSTALL_PREFIX|" $RPM_INSTALL_PREFIX/%pkgrel/bin/dotneato-config `find $RPM_INSTALL_PREFIX/%pkgrel/lib/graphviz -name *.la`