mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-27 03:31:01 +00:00
fbcb47f5e6
"last if ($line =~ /^}/);" to "last if ($line =~ /^(deprecated)?}/);" to prevent runaway parsing (in particular in libgnomeui). * sources/gtk-sharp-2.4-sources.xml: * sources/gtk-sharp-2.6-sources.xml: exclude a handful of libgnomeui files that were omitted in gtk# 1.0 due to the parser bug, but which are entirely deprecated anyway. (Some of them showed up in earlier 1.9/2.4/2.6 releases but are going away again now.) * gnome/gnome-api.raw: Regen * gnome/Gnome.metadata: Hide a few more things that should be hidden, remove a few rules that aren't needed any more. Keeping hiding GnomeIconTheme though and using the old by-hand IconTheme for the moment, since the by-hand one isn't compatible with the autogenerated one. * gnome/IconData.cs: kill this, use the autogenerated version svn path=/trunk/gtk-sharp/; revision=47398
64 lines
1.5 KiB
Makefile
64 lines
1.5 KiB
Makefile
SUBDIRS = . glue
|
|
|
|
if ENABLE_GNOME
|
|
pkg = gnome
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = gnome-sharp-2.0.pc
|
|
else
|
|
pkg =
|
|
endif
|
|
|
|
INCLUDE_API = ../pango/pango-api.xml ../atk/atk-api.xml ../gdk/gdk-api.xml ../gtk/gtk-api.xml ../art/art-api.xml ../gnomevfs/gnome-vfs-api.xml
|
|
METADATA = Gnome.metadata
|
|
SYMBOLS =
|
|
references = ../glib/glib-sharp.dll ../pango/pango-sharp.dll ../atk/atk-sharp.dll ../gdk/gdk-sharp.dll ../gtk/gtk-sharp.dll ../art/art-sharp.dll ../gnomevfs/gnome-vfs-sharp.dll
|
|
glue_includes = gnome.h,libgnomeprint/gnome-print.h,libgnomeprint/gnome-print-paper.h
|
|
|
|
sources = \
|
|
BonoboUIVerb.cs \
|
|
IconTheme.cs \
|
|
Modules.cs \
|
|
PanelAppletFactory.cs
|
|
|
|
customs = \
|
|
About.custom \
|
|
App.custom \
|
|
DateEdit.custom \
|
|
CanvasBpath.custom \
|
|
CanvasClipgroup.custom \
|
|
Canvas.custom \
|
|
CanvasEllipse.custom \
|
|
CanvasGroup.custom \
|
|
CanvasItem.custom \
|
|
CanvasLine.custom \
|
|
CanvasPathDef.custom \
|
|
CanvasPixbuf.custom \
|
|
CanvasPoints.custom \
|
|
CanvasPolygon.custom \
|
|
CanvasRect.custom \
|
|
CanvasRE.custom \
|
|
CanvasRichText.custom \
|
|
CanvasShape.custom \
|
|
CanvasText.custom \
|
|
CanvasWidget.custom \
|
|
Druid.custom \
|
|
DruidPageEdge.custom \
|
|
Font.custom \
|
|
FontFamily.custom \
|
|
GPFontEntry.custom \
|
|
IconList.custom \
|
|
IconTextItem.custom \
|
|
PanelApplet.custom \
|
|
Print.custom \
|
|
PrintContext.custom \
|
|
PrintDialog.custom \
|
|
PrintJob.custom \
|
|
Program.custom \
|
|
Scores.custom \
|
|
UIInfo.custom
|
|
|
|
add_dist = gnome-sharp-2.0.pc.in
|
|
|
|
include ../Makefile.include
|
|
|