ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/CMSDIST/graphviz.spec
(Generate patch)

Comparing COMP/CMSDIST/graphviz.spec (file contents):
Revision 1.13 by elmer, Wed Jun 27 12:50:44 2007 UTC vs.
Revision 1.21 by elmer, Wed Jan 23 20:32:01 2008 UTC

# Line 1 | Line 1
1 < ### RPM external graphviz 1.9-CMS3
2 < Source: http://service-spi.web.cern.ch/service-spi/external/tarFiles/%{n}-%{realversion}.tar.gz  
1 > ### RPM external graphviz 2.16.1-CMS19
2 > Source: http://www.graphviz.org/pub/%{n}/ARCHIVE/%{n}-%{realversion}.tar.gz  
3   Requires: expat zlib libjpg libpng
4 Patch0: graphviz
4  
5   %prep
6   %setup -n %{n}-%{realversion}
8 %patch0 -p1
7  
8   %build
9 + which gcc
10 + LIB64_SUFFIX=
11 + case %cmsplatf in
12 +    *_ia32_* )
13 +        export LD_LIBRARY_PATH=`echo $LD_LIBRARY_PATH | sed -e 's|lib64|lib|g'`
14 +        ADDITIONAL_OPTIONS="--without-freetype --disable-shared --enable-static --disable-libtdl"
15 +    ;;
16 +    *_amd64_* )
17 +        LIB64_SUFFIX=64
18 +        ADDITIONAL_OPTIONS="--without-freetype --disable-shared --enable-static --disable-ltdl"
19 +    ;;
20 +    osx* )
21 +        ADDITIONAL_OPTIONS=
22 +    ;;
23 + esac
24   ./configure \
25 <  --with-expatlibdir=$EXPAT_ROOT/lib \
25 >  --with-expatlibdir=$EXPAT_ROOT/lib$LIB64_SUFFIX \
26    --with-expatincludedir=$EXPAT_ROOT/include \
27    --with-zincludedir=$ZLIB_ROOT/include \
28    --with-zlibdir=$ZLIB_ROOT/lib \
# Line 20 | Line 33 | Patch0: graphviz
33    --without-x \
34    --without-tclsh \
35    --without-tcl \
36 +  --without-fontconfig \
37    --without-tk \
38 <  --prefix=%{i}
38 >  --without-perl \
39 >  --without-python \
40 >  --without-ruby \
41 >  --disable-ruby \
42 >  --disable-perl \
43 >  --without-pangocairo \
44 >  --without-fontconfig \
45 >  --without-gdk-pixbuf \
46 >  --disable-sharp \
47 >  --disable-guile \
48 >  --disable-java \
49 >  --disable-lua \
50 >  --disable-ocaml \
51 >  --disable-perl \
52 >  --disable-php \
53 >  --disable-python \
54 >  --prefix=%{i} \
55 >  $ADDITIONAL_OPTIONS
56 >
57   # This is a workaround for the fact that sort from coreutils 5.96 doesn't
58   # like "sort +0 -1", not really something specific to ppc64/ydl5.0
59   if [ "$(uname -m)" == "ppc64" ]
60   then
61   perl -p -i -e "s|\+0 \-1|-k1,1|g" dotneato/common/Makefile
62   fi
63 < make
63 > # Probably the configure should just be remade on Darwin, but it builds
64 > # as-is with this small cleanup
65 > perl -p -i -e "s|-lexpat||g" configure
66 > make %makeprocesses
67 >
68 > %install
69 > make install
70 > ln -s dot_static %i/bin/dot
71 >
72 > # SCRAM ToolBox toolfile
73 > mkdir -p %i/etc/scram.d
74 > cat << \EOF_TOOLFILE >%i/etc/scram.d/%n
75 > <doc type=BuildSystem::ToolDoc version=1.0>
76 > <Tool name=%n version=%v>
77 > <info url="http://www.research.att.com/sw/tools/graphviz/"></info>
78 > <Client>
79 > <Environment name=GRAPHVIZ_BASE default="%i"></Environment>
80 > <Environment name=GRAPHVIZ_BINDIR default="$GRAPHVIZ_BASE/bin"></Environment>
81 > <Environment name=LIBDIR default="$GRAPHVIZ_BASE/lib/graphviz"></Environment>
82 > </Client>
83 > <Runtime name=PATH value="$GRAPHVIZ_BINDIR" type=path>
84 > <Use name=expat>
85 > <Use name=zlib>
86 > <Use name=libjpg>
87 > <use name=libpng>
88 > </Tool>
89 > EOF_TOOLFILE
90 >
91   %post
92 < 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`
92 > # It appears one needs to list at least one explicitly as the macro adds
93 > # the prefix, but then the find can add it and the others (also with the
94 > # prefix)
95 > %{relocateConfig}/lib/libgraph.la `find $RPM_INSTALL_PREFIX/%pkgrel/lib -name *.la`
96 > %{relocateConfig}etc/scram.d/%n

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines