2003-02-22 19:19:15 +00:00
|
|
|
DOWNLOADS = \
|
2003-09-16 18:07:40 +00:00
|
|
|
http://ftp.gnome.org/pub/GNOME/desktop/2.2/2.2.2/sources/pango-1.2.3.tar.gz \
|
|
|
|
http://ftp.gnome.org/pub/GNOME/desktop/2.2/2.2.2/sources/atk-1.2.4.tar.gz \
|
|
|
|
http://ftp.gnome.org/pub/GNOME/desktop/2.2/2.2.2/sources/gtk+-2.2.2.tar.gz \
|
|
|
|
http://ftp.gnome.org/pub/GNOME/desktop/2.2/2.2.2/sources/libgnome-2.2.3.tar.gz \
|
|
|
|
http://ftp.gnome.org/pub/GNOME/desktop/2.2/2.2.2/sources/libgnomecanvas-2.2.1.tar.gz \
|
|
|
|
http://ftp.gnome.org/pub/GNOME/desktop/2.2/2.2.2/sources/libgnomeui-2.2.2.tar.gz \
|
2003-08-13 18:41:20 +00:00
|
|
|
http://ftp.gnome.org/pub/GNOME/desktop/2.2/2.2.2/sources/libgnomeprint-2.2.1.3.tar.gz \
|
|
|
|
http://ftp.gnome.org/pub/GNOME/desktop/2.2/2.2.2/sources/libgnomeprintui-2.2.1.3.tar.gz \
|
2003-09-16 18:07:40 +00:00
|
|
|
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 \
|
|
|
|
http://ftp.gnome.org/pub/GNOME/desktop/2.2/2.2.2/sources/librsvg-2.2.5.tar.gz \
|
|
|
|
http://ftp.gnome.org/pub/GNOME/sources/gstreamer/0.4/gstreamer-0.4.2.tar.gz \
|
|
|
|
http://ftp.gnome.org/pub/GNOME/sources/libgda/1.0/libgda-1.0.0.tar.gz \
|
|
|
|
http://ftp.gnome.org/pub/GNOME/sources/libgnomedb/1.0/libgnomedb-1.0.0.tar.gz \
|
2003-02-22 19:19:15 +00:00
|
|
|
|
2003-07-16 03:29:47 +00:00
|
|
|
GTKHTML_SOURCES = \
|
2003-08-08 17:45:44 +00:00
|
|
|
gtkhtml-3.0.8/src/gtkhtml.c \
|
|
|
|
gtkhtml-3.0.8/src/gtkhtml.h \
|
|
|
|
gtkhtml-3.0.8/src/gtkhtml-types.h \
|
|
|
|
gtkhtml-3.0.8/src/gtkhtml-enums.h \
|
|
|
|
gtkhtml-3.0.8/src/gtkhtml-stream.c \
|
|
|
|
gtkhtml-3.0.8/src/gtkhtml-stream.h
|
2003-02-22 19:19:15 +00:00
|
|
|
|
2002-08-19 Rachel Hestilow <hestilow@ximian.com>
* art/Makefile.in (clean): Change to avoid bugging out on generated/CVS.
* glib/ObjectManager.cs: Added. Used to be auto-generated, but
now it can infer names, and relies on per-namespace ObjectManager
classes to inform it of oddly-named classes.
* generator/IGeneratable.cs, GenBase.cs: New "DoGenerate" property.
* generator/*Gen.cs: Honor DoGenerate.
* generator/CodeGenerator.cs: Support including dependency files
which will not be generated.
* generator/ObjectGen.cs: Generate mapping file per-namespace, as one
that calls back to the one in glib. Only generate if the name does
not follow the normal conventions, otherwise, GtkSharp.ObjectManager
can infer the name.
* generator/Parser.cs: Accept 'generate' flag to pass on to the
IGeneratables. Parse a new toplevel element, "symbol", which adds
a type to the SymbolTable (instead of hard-coding it).
* generator/SignalHandler.cs: Do not optimize signal handler creation,
instead creating them in their own namespaces. Do not generate
if the calling Signal told us not to.
* generator/Signal.cs: Do not generate handlers if container's DoGenerate
is false. Adjust to the marshaller name being in a sub-namespace.
* generator/SymbolTable.cs (AddSimpleType, AddManualType): Used
to add simple and manually wrapped types at runtime instead of
compile-time.
(FromNative): Remove hard-coded cases for manually wrapped types, use
a generic case instead.
* api: Added. Move api files and generation targets here.
* source: Added. Move source parsing here.
* generator/makefile: Move actual generation to api/.
* glib/Makefile.in: Remove generated/* target.
* glue/Makefile.am: Fix to include canvas-marshal. Move canvas stuff
to GNOME target.
* gnome/CanvasProxy.cs: Update to work with SignalHandlers being
namespace-specific.
* parser/Metadata.pm: Moved to GAPI/Metadata.pm, renamed, etc.
* parser/gapi2xml.pl: Use GAPI::Metadata.
* parser/makefile: Install scripts, remove source parse build target.
Rename formatXML to gapi_format_xml.
svn path=/trunk/gtk-sharp/; revision=6818
2002-08-20 19:56:18 +00:00
|
|
|
all:
|
2003-10-01 21:42:29 +00:00
|
|
|
PERLLIB=../parser PATH=../parser:$$PATH ../parser/gapi-parser gtk-sharp-sources.xml
|
2003-02-22 19:19:15 +00:00
|
|
|
|
2003-08-08 17:45:44 +00:00
|
|
|
get-gtkhtml-code:
|
|
|
|
wget http://ftp.gnome.org/pub/GNOME/sources/gtkhtml/3.0/gtkhtml-3.0.8.tar.gz --output-document=- | tar -xz $(GTKHTML_SOURCES)
|
|
|
|
patch -p0 < gtkhtml-font-style-enum.patch
|
|
|
|
|
|
|
|
get-source-code: get-gtkhtml-code
|
2003-02-22 19:19:15 +00:00
|
|
|
for i in $(DOWNLOADS); do \
|
|
|
|
wget $$i --output-document=- | tar -xz ; \
|
|
|
|
done;
|
2003-07-15 23:00:42 +00:00
|
|
|
|
2003-08-26 21:35:28 +00:00
|
|
|
ln -f -s ../gdk/gdkpixbuf-drawable.c gtk+-2.2.2/gdk-pixbuf/gdkpixbuf-drawable.c
|
|
|
|
ln -f -s ../gdk/gdkpixbuf.h gtk+-2.2.2/gdk-pixbuf/gdkpixbuf.h
|
|
|
|
ln -f -s ../gdk/gdkpixbuf-render.c gtk+-2.2.2/gdk-pixbuf/gdkpixbuf-render.c
|
2003-07-15 23:00:42 +00:00
|
|
|
|
2003-03-15 19:09:53 +00:00
|
|
|
distclean:
|
|
|
|
for i in `ls`; do \
|
|
|
|
if test -d $$i; then \
|
|
|
|
if test 'CVS' != $$i; then \
|
|
|
|
rm -Rf $$i; \
|
|
|
|
fi; \
|
|
|
|
fi; \
|
|
|
|
done;
|