diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-03-20T22·25+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-03-20T22·25+0000 |
commit | 4c43711810c73a3899066b9401a9517f53e1b0f1 (patch) | |
tree | 92ea3438881dccf28a7024bbb426c9579bcbd63b /test/dist | |
parent | cadc3852e44bc625872ef18f4407bff6797ac5dd (diff) |
* Descriptor templates for the Pan newsreader and all its
dependencies.
Diffstat (limited to 'test/dist')
-rwxr-xr-x | test/dist/aterm-build.sh | 10 | ||||
-rwxr-xr-x | test/dist/atk-build.sh | 12 | ||||
-rwxr-xr-x | test/dist/glib-build.sh | 10 | ||||
-rwxr-xr-x | test/dist/gnet-build.sh | 12 | ||||
-rwxr-xr-x | test/dist/gtk+-build.sh | 12 | ||||
-rwxr-xr-x | test/dist/pan-build.sh | 12 | ||||
-rwxr-xr-x | test/dist/pango-build.sh | 12 | ||||
-rwxr-xr-x | test/dist/pkgconfig-build.sh | 10 |
8 files changed, 90 insertions, 0 deletions
diff --git a/test/dist/aterm-build.sh b/test/dist/aterm-build.sh new file mode 100755 index 000000000000..cfc83806b35b --- /dev/null +++ b/test/dist/aterm-build.sh @@ -0,0 +1,10 @@ +#! /bin/sh + +export PATH=/bin:/usr/bin + +top=`pwd` +tar xvfz $src +cd aterm-* +./configure --prefix=$top +make +make install diff --git a/test/dist/atk-build.sh b/test/dist/atk-build.sh new file mode 100755 index 000000000000..df881cbef733 --- /dev/null +++ b/test/dist/atk-build.sh @@ -0,0 +1,12 @@ +#! /bin/sh + +export PATH=$pkgconfig/bin:/bin:/usr/bin +export PKG_CONFIG_PATH=$glib/lib/pkgconfig +export LD_LIBRARY_PATH=$glib/lib + +top=`pwd` +tar xvfj $src +cd atk-* +./configure --prefix=$top +make +make install diff --git a/test/dist/glib-build.sh b/test/dist/glib-build.sh new file mode 100755 index 000000000000..2100052bede4 --- /dev/null +++ b/test/dist/glib-build.sh @@ -0,0 +1,10 @@ +#! /bin/sh + +export PATH=$pkgconfig/bin:/bin:/usr/bin + +top=`pwd` +tar xvfj $src +cd glib-* +./configure --prefix=$top +make +make install diff --git a/test/dist/gnet-build.sh b/test/dist/gnet-build.sh new file mode 100755 index 000000000000..ec614b4bfa1c --- /dev/null +++ b/test/dist/gnet-build.sh @@ -0,0 +1,12 @@ +#! /bin/sh + +export PATH=$pkgconfig/bin:/bin:/usr/bin +export PKG_CONFIG_PATH=$glib/lib/pkgconfig +export LD_LIBRARY_PATH=$glib/lib + +top=`pwd` +tar xvfz $src +cd gnet-* +./configure --prefix=$top +make +make install diff --git a/test/dist/gtk+-build.sh b/test/dist/gtk+-build.sh new file mode 100755 index 000000000000..8c887fec4f02 --- /dev/null +++ b/test/dist/gtk+-build.sh @@ -0,0 +1,12 @@ +#! /bin/sh + +export PATH=$pkgconfig/bin:/bin:/usr/bin +export PKG_CONFIG_PATH=$glib/lib/pkgconfig:$atk/lib/pkgconfig:$pango/lib/pkgconfig +export LD_LIBRARY_PATH=$glib/lib + +top=`pwd` +tar xvfj $src +cd gtk+-* +./configure --prefix=$top +make +make install diff --git a/test/dist/pan-build.sh b/test/dist/pan-build.sh new file mode 100755 index 000000000000..468814ff6686 --- /dev/null +++ b/test/dist/pan-build.sh @@ -0,0 +1,12 @@ +#! /bin/sh + +export PATH=$pkgconfig/bin:$gnet/bin:/bin:/usr/bin +export PKG_CONFIG_PATH=$glib/lib/pkgconfig:$atk/lib/pkgconfig:$pango/lib/pkgconfig:$gtk/lib/pkgconfig +export LD_LIBRARY_PATH=$gnet/lib + +top=`pwd` +tar xvfj $src +cd pan-* +./configure --prefix=$top +make +make install diff --git a/test/dist/pango-build.sh b/test/dist/pango-build.sh new file mode 100755 index 000000000000..fd43c274b51d --- /dev/null +++ b/test/dist/pango-build.sh @@ -0,0 +1,12 @@ +#! /bin/sh + +export PATH=$pkgconfig/bin:/bin:/usr/bin +export PKG_CONFIG_PATH=$glib/lib/pkgconfig +export LD_LIBRARY_PATH=$glib/lib + +top=`pwd` +tar xvfj $src +cd pango-* +./configure --prefix=$top +make +make install diff --git a/test/dist/pkgconfig-build.sh b/test/dist/pkgconfig-build.sh new file mode 100755 index 000000000000..522a05716b5c --- /dev/null +++ b/test/dist/pkgconfig-build.sh @@ -0,0 +1,10 @@ +#! /bin/sh + +export PATH=/bin:/usr/bin + +top=`pwd` +tar xvfz $src +cd pkgconfig-* +./configure --prefix=$top +make +make install |