forked from mirrors/nixpkgs
* Converted some more packages.
svn path=/nixpkgs/trunk/; revision=152
This commit is contained in:
parent
ec3b5134c1
commit
0f0a347992
12
pkgs/atk/atk-build.sh
Executable file
12
pkgs/atk/atk-build.sh
Executable file
|
@ -0,0 +1,12 @@
|
|||
#! /bin/sh
|
||||
|
||||
export PATH=$pkgconfig/bin:/bin:/usr/bin
|
||||
envpkgs=$glib
|
||||
. $setenv
|
||||
|
||||
tar xvfj $src || exit 1
|
||||
cd atk-* || exit 1
|
||||
./configure --prefix=$out || exit 1
|
||||
make || exit 1
|
||||
make install || exit 1
|
||||
echo $envpkgs > $out/envpkgs || exit 1
|
15
pkgs/atk/atk.fix
Normal file
15
pkgs/atk/atk.fix
Normal file
|
@ -0,0 +1,15 @@
|
|||
Package(
|
||||
[ ("name", "atk-1.2.4")
|
||||
|
||||
, ("build", Relative("atk/atk-build.sh"))
|
||||
, ("setenv", Relative("helpers/set-env.sh"))
|
||||
|
||||
, ("src", App(IncludeFix("fetchurl/fetchurl.fix"),
|
||||
[ ("url", "ftp://ftp.gtk.org/pub/gtk/v2.2/atk-1.2.4.tar.bz2")
|
||||
, ("md5", "2d6d50df31abe0e8892b5d3e7676a02d")
|
||||
]))
|
||||
|
||||
, ("pkgconfig", IncludeFix("pkgconfig/pkgconfig.fix"))
|
||||
, ("glib", IncludeFix("glib/glib.fix"))
|
||||
]
|
||||
)
|
9
pkgs/glib/glib-build.sh
Executable file
9
pkgs/glib/glib-build.sh
Executable file
|
@ -0,0 +1,9 @@
|
|||
#! /bin/sh
|
||||
|
||||
export PATH=$pkgconfig/bin:/bin:/usr/bin
|
||||
|
||||
tar xvfj $src
|
||||
cd glib-*
|
||||
./configure --prefix=$out
|
||||
make
|
||||
make install
|
13
pkgs/glib/glib.fix
Normal file
13
pkgs/glib/glib.fix
Normal file
|
@ -0,0 +1,13 @@
|
|||
Package(
|
||||
[ ("name", "glib-2.2.2")
|
||||
|
||||
, ("build", Relative("glib/glib-build.sh"))
|
||||
|
||||
, ("src", App(IncludeFix("fetchurl/fetchurl.fix"),
|
||||
[ ("url", "ftp://ftp.gtk.org/pub/gtk/v2.2/glib-2.2.2.tar.bz2")
|
||||
, ("md5", "3e9a9512943c81a78cafa0536dcc8b41")
|
||||
]))
|
||||
|
||||
, ("pkgconfig", IncludeFix("pkgconfig/pkgconfig.fix"))
|
||||
]
|
||||
)
|
12
pkgs/gnet/gnet-build.sh
Executable file
12
pkgs/gnet/gnet-build.sh
Executable file
|
@ -0,0 +1,12 @@
|
|||
#! /bin/sh
|
||||
|
||||
export PATH=$pkgconfig/bin:/bin:/usr/bin
|
||||
envpkgs=$glib
|
||||
. $setenv
|
||||
|
||||
tar xvfz $src || exit 1
|
||||
cd gnet-* || exit 1
|
||||
./configure --prefix=$out || exit 1
|
||||
make || exit 1
|
||||
make install || exit 1
|
||||
echo $envpkgs > $out/envpkgs || exit 1
|
15
pkgs/gnet/gnet.fix
Normal file
15
pkgs/gnet/gnet.fix
Normal file
|
@ -0,0 +1,15 @@
|
|||
Package(
|
||||
[ ("name", "gnet-1.1.9")
|
||||
|
||||
, ("build", Relative("gnet/gnet-build.sh"))
|
||||
, ("setenv", Relative("helpers/set-env.sh"))
|
||||
|
||||
, ("src", App(IncludeFix("fetchurl/fetchurl.fix"),
|
||||
[ ("url", "http://www.gnetlibrary.org/src/gnet-1.1.9.tar.gz")
|
||||
, ("md5", "381b5c6d4031806fc4c3e6b28dc752ec")
|
||||
]))
|
||||
|
||||
, ("pkgconfig", IncludeFix("pkgconfig/pkgconfig.fix"))
|
||||
, ("glib", IncludeFix("glib/glib.fix"))
|
||||
]
|
||||
)
|
12
pkgs/gtk+/gtk+-build.sh
Executable file
12
pkgs/gtk+/gtk+-build.sh
Executable file
|
@ -0,0 +1,12 @@
|
|||
#! /bin/sh
|
||||
|
||||
export PATH=$pkgconfig/bin:/bin:/usr/bin
|
||||
envpkgs="$glib $atk $pango"
|
||||
. $setenv
|
||||
|
||||
tar xvfj $src || exit 1
|
||||
cd gtk+-* || exit 1
|
||||
./configure --prefix=$out --x-includes=/usr/X11/include --x-libraries=/usr/X11/lib || exit 1
|
||||
make || exit 1
|
||||
make install || exit 1
|
||||
echo $envpkgs > $out/envpkgs || exit 1
|
17
pkgs/gtk+/gtk+.fix
Normal file
17
pkgs/gtk+/gtk+.fix
Normal file
|
@ -0,0 +1,17 @@
|
|||
Package(
|
||||
[ ("name", "gtk+-2.2.2")
|
||||
|
||||
, ("build", Relative("gtk+/gtk+-build.sh"))
|
||||
, ("setenv", Relative("helpers/set-env.sh"))
|
||||
|
||||
, ("src", App(IncludeFix("fetchurl/fetchurl.fix"),
|
||||
[ ("url", "ftp://ftp.gtk.org/pub/gtk/v2.2/gtk+-2.2.2.tar.bz2")
|
||||
, ("md5", "5a7c639f0f2d682bdc17e3f81c17c79c")
|
||||
]))
|
||||
|
||||
, ("pkgconfig", IncludeFix("pkgconfig/pkgconfig.fix"))
|
||||
, ("glib", IncludeFix("glib/glib.fix"))
|
||||
, ("atk", IncludeFix("atk/atk.fix"))
|
||||
, ("pango", IncludeFix("pango/pango.fix"))
|
||||
]
|
||||
)
|
14
pkgs/gtkspell/gtkspell-build.sh
Executable file
14
pkgs/gtkspell/gtkspell-build.sh
Executable file
|
@ -0,0 +1,14 @@
|
|||
#! /bin/sh
|
||||
|
||||
export PATH=$pkgconfig/bin:/bin:/usr/bin
|
||||
envpkgs="$gtk $pspell"
|
||||
. $setenv
|
||||
|
||||
export C_INCLUDE_PATH=$pspell/include:$C_INCLUDE_PATH
|
||||
|
||||
tar xvfz $src || exit 1
|
||||
cd gtkspell-* || exit 1
|
||||
./configure --prefix=$out --disable-gtk-doc || exit 1
|
||||
make || exit 1
|
||||
make install || exit 1
|
||||
echo $envpkgs > $out/envpkgs || exit 1
|
16
pkgs/gtkspell/gtkspell.fix
Normal file
16
pkgs/gtkspell/gtkspell.fix
Normal file
|
@ -0,0 +1,16 @@
|
|||
Package(
|
||||
[ ("name", "gtkspell-2.0.4")
|
||||
|
||||
, ("build", Relative("gtkspell/gtkspell-build.sh"))
|
||||
, ("setenv", Relative("helpers/set-env.sh"))
|
||||
|
||||
, ("src", App(IncludeFix("fetchurl/fetchurl.fix"),
|
||||
[ ("url", "http://gtkspell.sourceforge.net/download/gtkspell-2.0.4.tar.gz")
|
||||
, ("md5", "4ded985b8eefdf9ac6fbf79cad69ccbd")
|
||||
]))
|
||||
|
||||
, ("pkgconfig", IncludeFix("pkgconfig/pkgconfig.fix"))
|
||||
, ("gtk", IncludeFix("gtk+/gtk+.fix"))
|
||||
, ("pspell", IncludeFix("pspell/pspell.fix"))
|
||||
]
|
||||
)
|
9
pkgs/libxml2/libxml2-build.sh
Executable file
9
pkgs/libxml2/libxml2-build.sh
Executable file
|
@ -0,0 +1,9 @@
|
|||
#! /bin/sh
|
||||
|
||||
export PATH=/bin:/usr/bin
|
||||
|
||||
tar xvfz $src || exit 1
|
||||
cd libxml2-* || exit 1
|
||||
./configure --prefix=$out || exit 1
|
||||
make || exit 1
|
||||
make install || exit 1
|
11
pkgs/libxml2/libxml2.fix
Normal file
11
pkgs/libxml2/libxml2.fix
Normal file
|
@ -0,0 +1,11 @@
|
|||
Package(
|
||||
[ ("name", "libxml2-2.5.8")
|
||||
|
||||
, ("build", Relative("libxml2/libxml2-build.sh"))
|
||||
|
||||
, ("src", App(IncludeFix("fetchurl/fetchurl.fix"),
|
||||
[ ("url", "ftp://fr.rpmfind.net/pub/libxml/libxml2-2.5.8.tar.gz")
|
||||
, ("md5", "b2caf6efe9ff9c4d2c175fb0689bd20e")
|
||||
]))
|
||||
]
|
||||
)
|
14
pkgs/pan/pan-build.sh
Executable file
14
pkgs/pan/pan-build.sh
Executable file
|
@ -0,0 +1,14 @@
|
|||
#! /bin/sh
|
||||
|
||||
export PATH=$pkgconfig/bin:/bin:/usr/bin
|
||||
envpkgs="$gtk $gtkspell $gnet $libxml"
|
||||
. $setenv
|
||||
|
||||
export LDFLAGS=-s
|
||||
|
||||
tar xvfj $src
|
||||
cd pan-*
|
||||
./configure --prefix=$out
|
||||
make
|
||||
make install
|
||||
echo $envpkgs > $out/envpkgs || exit 1
|
18
pkgs/pan/pan.fix
Normal file
18
pkgs/pan/pan.fix
Normal file
|
@ -0,0 +1,18 @@
|
|||
Package(
|
||||
[ ("name", "pan-0.14.0.90")
|
||||
|
||||
, ("build", Relative("pan/pan-build.sh"))
|
||||
, ("setenv", Relative("helpers/set-env.sh"))
|
||||
|
||||
, ("src", App(IncludeFix("fetchurl/fetchurl.fix"),
|
||||
[ ("url", "http://pan.rebelbase.com/download/releases/0.14.0.90/SOURCE/pan-0.14.0.90.tar.bz2")
|
||||
, ("md5", "59612bf2551650c0060b214f9742a105")
|
||||
]))
|
||||
|
||||
, ("pkgconfig", IncludeFix("pkgconfig/pkgconfig.fix"))
|
||||
, ("gtk", IncludeFix("gtk+/gtk+.fix"))
|
||||
, ("gtkspell", IncludeFix("gtkspell/gtkspell.fix"))
|
||||
, ("gnet", IncludeFix("gnet/gnet.fix"))
|
||||
, ("libxml", IncludeFix("libxml2/libxml2.fix"))
|
||||
]
|
||||
)
|
12
pkgs/pango/pango-build.sh
Executable file
12
pkgs/pango/pango-build.sh
Executable file
|
@ -0,0 +1,12 @@
|
|||
#! /bin/sh
|
||||
|
||||
export PATH=$pkgconfig/bin:/bin:/usr/bin
|
||||
envpkgs="$glib $Xft"
|
||||
. $setenv
|
||||
|
||||
tar xvfj $src || exit 1
|
||||
cd pango-* || exit 1
|
||||
./configure --prefix=$out --x-includes=/usr/X11/include --x-libraries=/usr/X11/lib || exit 1
|
||||
make || exit 1
|
||||
make install || exit 1
|
||||
echo $envpkgs > $out/envpkgs || exit 1
|
16
pkgs/pango/pango.fix
Normal file
16
pkgs/pango/pango.fix
Normal file
|
@ -0,0 +1,16 @@
|
|||
Package(
|
||||
[ ("name", "pango-1.2.3")
|
||||
|
||||
, ("build", Relative("pango/pango-build.sh"))
|
||||
, ("setenv", Relative("helpers/set-env.sh"))
|
||||
|
||||
, ("src", App(IncludeFix("fetchurl/fetchurl.fix"),
|
||||
[ ("url", "ftp://ftp.gtk.org/pub/gtk/v2.2/pango-1.2.3.tar.bz2")
|
||||
, ("md5", "12247592ea582907cfd2de81aeb32caf")
|
||||
]))
|
||||
|
||||
, ("pkgconfig", IncludeFix("pkgconfig/pkgconfig.fix"))
|
||||
, ("glib", IncludeFix("glib/glib.fix"))
|
||||
, ("Xft", IncludeFix("Xft/Xft.fix"))
|
||||
]
|
||||
)
|
|
@ -3,7 +3,7 @@ Package(
|
|||
, ("build", Relative("pkgconfig/pkgconfig-build.sh"))
|
||||
, ("src", App(IncludeFix("fetchurl/fetchurl.fix"),
|
||||
[ ("url", "http://www.freedesktop.org/software/pkgconfig/releases/pkgconfig-0.15.0.tar.gz")
|
||||
, ("md5", "c62371dd07ef85043e91f298176c771f")
|
||||
, ("md5", "a7e4f60a6657dbc434334deb594cc242")
|
||||
]))
|
||||
]
|
||||
)
|
||||
|
|
9
pkgs/pspell/pspell-build.sh
Executable file
9
pkgs/pspell/pspell-build.sh
Executable file
|
@ -0,0 +1,9 @@
|
|||
#! /bin/sh
|
||||
|
||||
export PATH=/bin:/usr/bin
|
||||
|
||||
tar xvfz $src || exit 1
|
||||
cd pspell-* || exit 1
|
||||
./configure --prefix=$out || exit 1
|
||||
make || exit 1
|
||||
make install || exit 1
|
11
pkgs/pspell/pspell.fix
Normal file
11
pkgs/pspell/pspell.fix
Normal file
|
@ -0,0 +1,11 @@
|
|||
Package(
|
||||
[ ("name", "pspell-.12.2")
|
||||
|
||||
, ("build", Relative("pspell/pspell-build.sh"))
|
||||
|
||||
, ("src", App(IncludeFix("fetchurl/fetchurl.fix"),
|
||||
[ ("url", "http://unc.dl.sourceforge.net/sourceforge/pspell/pspell-.12.2.tar.gz")
|
||||
, ("md5", "cfd3816b2372932a1b71c0ce4e9f881e")
|
||||
]))
|
||||
]
|
||||
)
|
|
@ -6,6 +6,6 @@ Package(
|
|||
, ("actPkgConfig", IncludeFix("pkgconfig/pkgconfig.fix"))
|
||||
, ("actOpenSSL", IncludeFix("openssl/openssl.fix"))
|
||||
, ("actSubversion", IncludeFix("subversion/subversion.fix"))
|
||||
, ("actXft", IncludeFix("Xft/Xft.fix"))
|
||||
, ("actPan", IncludeFix("pan/pan.fix"))
|
||||
]
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue