[Gtk-sharp-list] [PATCH] sources/makefile -- more "make get-source-code" stuff

Charles Iliya Krempeaux charles@reptile.ca
23 Feb 2003 11:14:04 -0800


--=-88g9ZYreJNkH8u65UPV0
Content-Type: text/plain
Content-Transfer-Encoding: 7bit

Hello,

I "completed" the "make get-source-code" thing for "sources/makefile".

The makefile now creates the Symbolic Link that was talked about
in "sources/README".  And gets gtkhtml from the GNOME CVS (as also
specified in "sources/README").

So... "make get-source-code" now gets all the source code you'll need.
(And creates the Symbolic Links you need.)

(A ChangeLog update is also included in this Patch.)


See ya

-- 
     Charles Iliya Krempeaux, BSc
     charles@reptile.ca

________________________________________________________________________
 Reptile Consulting & Services    604-REPTILE    http://www.reptile.ca/

--=-88g9ZYreJNkH8u65UPV0
Content-Disposition: attachment; filename=gtk-sharp.diff
Content-Type: text/x-patch; name=gtk-sharp.diff; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable

Index: ChangeLog
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
RCS file: /mono/gtk-sharp/ChangeLog,v
retrieving revision 1.328
diff -u -r1.328 ChangeLog
--- ChangeLog	22 Feb 2003 19:19:15 -0000	1.328
+++ ChangeLog	23 Feb 2003 19:05:06 -0000
@@ -1,3 +1,9 @@
+2003-02-23  Charles Iliya Krempeaux <charles@reptile.ca>
+
+	* 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-22  Mike Kestner  <mkestner@speakeasy.net>
=20
 	* sources/makefile : patch from Charles Krempeaux to add
Index: sources/makefile
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
RCS file: /mono/gtk-sharp/sources/makefile,v
retrieving revision 1.2
diff -u -r1.2 makefile
--- sources/makefile	22 Feb 2003 19:19:15 -0000	1.2
+++ sources/makefile	23 Feb 2003 19:05:10 -0000
@@ -1,4 +1,3 @@
-# TODO: Need to add gtkhtml-3.0 to DOWNLOADS.
 DOWNLOADS =3D \
 	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,9 @@
 	for i in $(DOWNLOADS); do                          \
 		wget $$i --output-document=3D- | tar -xz ;   \
 	done;
-
+	export CVS_PASSWORD=3D""
+	cvs -z3 -d:pserver:anonymous@anoncvs.gnome.org:/cvs/gnome co gtkhtml
+	ln -f -s ../gdk/gdkpixbuf-drawable.c gtk+-2.0.5/gdk-pixbuf/gdkpixbuf-draw=
able.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-rend=
er.c
=20

--=-88g9ZYreJNkH8u65UPV0--