* Added gqview to system

* Enabled build of dotty/lefty in graphviz.

svn path=/nixpkgs/trunk/; revision=383
This commit is contained in:
Eelco Dolstra 2003-09-03 15:07:50 +00:00
parent 35e9ca4fa9
commit ff7acae84b
4 changed files with 5 additions and 2 deletions

View file

@ -7,6 +7,6 @@ NIX_CFLAGS_COMPILE="-I$zlib/include -I$libpng/include -I$libjpeg/include -I$expa
tar xvfz $src || exit 1
cd graphviz-* || exit 1
./configure --prefix=$out --without-x || exit 1
./configure --prefix=$out --x-includes=$x11/include --x-libraries=$x11/lib || exit 1
make || exit 1
make install || exit 1

View file

@ -9,6 +9,7 @@ Package(
]))
, ("stdenv", IncludeFix("stdenv/stdenv.fix"))
, ("x11", IncludeFix("xfree86/xfree86.fix"))
, ("zlib", IncludeFix("zlib/zlib.fix"))
, ("libpng", IncludeFix("libpng/libpng.fix"))
, ("libjpeg", IncludeFix("libjpeg/libjpeg.fix"))

View file

@ -10,4 +10,5 @@ Call(IncludeFix("system/system.fix"),
, ("httpd", True)
, ("firebird", True)
, ("graphviz", True)
, ("gqview", True)
])

View file

@ -1,6 +1,6 @@
Function(
[ "subversion", "strategoxt", "pan", "mplayer", "sylpheed", "libxslt", "libxml"
, "docbook", "httpd", "firebird", "graphviz"
, "docbook", "httpd", "firebird", "graphviz", "gqview"
],
Package(
[ ("name", "system")
@ -28,6 +28,7 @@ Function(
, ("actHttpd", If(Var("httpd"), IncludeFix("httpd/httpd.fix"), ""))
, ("actFirebird", If(Var("firebird"), IncludeFix("firebird/firebird.fix"), ""))
, ("actGraphviz", If(Var("graphviz"), IncludeFix("graphviz/graphviz.fix"), ""))
, ("actGQView", If(Var("gqview"), IncludeFix("gqview/gqview.fix"), ""))
]
)
)