2003-02-22 Mike Kestner <mkestner@speakeasy.net>

* sources/makefile : patch from Charles Krempeaux to add
	get-source-code target which wgets tarballs.

svn path=/trunk/gtk-sharp/; revision=11842
This commit is contained in:
Mike Kestner 2003-02-22 19:19:15 +00:00
parent 2071f16dec
commit 4bf0846a5f
3 changed files with 3064 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2003-02-22 Mike Kestner <mkestner@speakeasy.net>
* sources/makefile : patch from Charles Krempeaux to add
get-source-code target which wgets tarballs.
2003-02-21 Mike Kestner <mkestner@speakeasy.net>
* mapdllnames.pl : a little whitespace action

File diff suppressed because it is too large Load Diff

View File

@ -1,2 +1,25 @@
# TODO: Need to add gtkhtml-3.0 to DOWNLOADS.
DOWNLOADS = \
http://ftp.gnome.org/pub/GNOME/desktop/2.0/2.0.0/sources/atk-1.0.2.tar.gz \
http://ftp.gnome.org/pub/GNOME/desktop/2.0/2.0.0/sources/pango-1.0.3.tar.gz \
http://ftp.gnome.org/pub/GNOME/desktop/2.0/2.0.0/sources/gtk+-2.0.5.tar.gz \
http://ftp.gnome.org/pub/GNOME/desktop/2.0/2.0.0/sources/libgnome-2.0.1.tar.gz \
http://ftp.gnome.org/pub/GNOME/desktop/2.0/2.0.0/sources/libgnomecanvas-2.0.1.tar.gz \
http://ftp.gnome.org/pub/GNOME/desktop/2.0/2.0.0/sources/libgnomeui-2.0.1.tar.gz \
http://ftp.gnome.org/pub/GNOME/desktop/2.0/2.0.0/sources/libglade-2.0.0.tar.gz \
http://ftp.gnome.org/pub/GNOME/desktop/2.0/2.0.3/sources/libart_lgpl-2.3.10.tar.gz \
ftp://ftp.gnome-db.org/pub/gnome-db/sources/v0.10.0/libgda-0.10.0.tar.gz \
ftp://ftp.gnome-db.org/pub/gnome-db/sources/v0.10.0/libgnomedb-0.10.0.tar.gz \
http://unc.dl.sourceforge.net/sourceforge/gstreamer/gstreamer-0.4.2.tar.gz \
http://ftp.gnome.org/pub/gnome/sources/librsvg/2.0/librsvg-2.0.1.tar.gz \
all:
PERLLIB=../parser PATH=../parser:$$PATH ../parser/gapi.pl gtk-sharp.sources ../api
get-source-code:
for i in $(DOWNLOADS); do \
wget $$i --output-document=- | tar -xz ; \
done;