From 5ebd8d64a732e676f7415274e9af307930a7d29d Mon Sep 17 00:00:00 2001 From: Charles Iliya Krempeaux Date: Fri, 14 Mar 2003 01:07:39 +0000 Subject: [PATCH] 2003-02-27 Charles Iliya Krempeaux * sources/makefile : Updated the "make get-source-code" functionality to create the Symbolic Links and get gtkhtml from CVS, as specified by "sources/READDME". svn path=/trunk/gtk-sharp/; revision=12489 --- ChangeLog | 6 ++++++ sources/makefile | 15 ++++++++++++--- 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 601f49986..6262240f0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -68,6 +68,12 @@ * sources/Gdk.metadata: Make Colormap.AllocColor GdkColor parameter be a `ref' parameter. +2003-02-27 Charles Iliya Krempeaux + + * sources/makefile : Updated the "make get-source-code" + functionality to create the Symbolic Links and get + gtkhtml from CVS, as specified by "sources/READDME". + 2003-02-27 Miguel de Icaza * gdk/Drawable.custom: Added nice overload for DrawRectangle. diff --git a/sources/makefile b/sources/makefile index d0889fadd..d0d82dc0c 100644 --- a/sources/makefile +++ b/sources/makefile @@ -1,4 +1,3 @@ -# 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 \ @@ -21,5 +20,15 @@ get-source-code: for i in $(DOWNLOADS); do \ wget $$i --output-document=- | tar -xz ; \ done; - - + export CVS_PASSWORD="" + cvs -z3 -d:pserver:anonymous@anoncvs.gnome.org:/cvs/gnome co gtkhtml/src/gtkhtml.c + cvs -z3 -d:pserver:anonymous@anoncvs.gnome.org:/cvs/gnome co gtkhtml/src/gtkhtml.h + cvs -z3 -d:pserver:anonymous@anoncvs.gnome.org:/cvs/gnome co gtkhtml/src/gtkhtml-types.h + cvs -z3 -d:pserver:anonymous@anoncvs.gnome.org:/cvs/gnome co gtkhtml/src/gtkhtml-enums.h + cvs -z3 -d:pserver:anonymous@anoncvs.gnome.org:/cvs/gnome co gtkhtml/src/gtkhtml-stream.c + cvs -z3 -d:pserver:anonymous@anoncvs.gnome.org:/cvs/gnome co gtkhtml/src/gtkhtml-stream.h + ln -f -s ../gdk/gdkpixbuf-drawable.c gtk+-2.0.5/gdk-pixbuf/gdkpixbuf-drawable.c + ln -f -s ../gdk/gdkpixbuf.h gtk+-2.0.5/gdk-pixbuf/gdkpixbuf.h + ln -f -s ../gdk/gdkpixbuf-render.c gtk+-2.0.5/gdk-pixbuf/gdkpixbuf-render.c + +