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

Charles Iliya Krempeaux charles@reptile.ca
27 Feb 2003 21:53:24 -0800


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

Hello,

On Wed, 2003-02-26 at 21:22, Mike Kestner wrote:
> On Sun, 2003-02-23 at 13:14, Charles Iliya Krempeaux wrote:
> 
> > 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").
> 
> The patch isn't quite correct in that only a half dozen or so files are
> needed from the gtkhtml dir. The files are specified in the README file.

OK, here's a new Patch, that should be correct.


See ya

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

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

--=-qOKMnn9W2V1Xzaz5O9OI
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.338
diff -u -r1.338 ChangeLog
--- ChangeLog	28 Feb 2003 04:54:01 -0000	1.338
+++ ChangeLog	28 Feb 2003 05:48:22 -0000
@@ -1,3 +1,9 @@
+2003-02-27  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-27  Miguel de Icaza  <miguel@ximian.com>
=20
 	* gdk/Drawable.custom: Added nice overload for DrawRectangle.=20
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	28 Feb 2003 05:48:25 -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,15 @@
 	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/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-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
=20

--=-qOKMnn9W2V1Xzaz5O9OI--