The deprecated and a11y sources of GTK+ were spun off some time ago into their own Makefile.inc, which is then included by gtk/Makefile.am. Fix the generation of file sources for the GTK+ .gir.
		
			
				
	
	
		
			101 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			101 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
#!/usr/bin/python
 | 
						|
# vim: encoding=utf-8
 | 
						|
# Generate the file lists for processing with g-ir-scanner
 | 
						|
import os
 | 
						|
import sys
 | 
						|
import re
 | 
						|
import string
 | 
						|
import subprocess
 | 
						|
import optparse
 | 
						|
 | 
						|
from msvcfiles import read_vars_from_AM
 | 
						|
 | 
						|
def gen_gdk_filelist(srcroot, subdir, dest):
 | 
						|
    vars = read_vars_from_AM(os.path.join(srcroot, subdir, 'Makefile.am'),
 | 
						|
                             vars = {},
 | 
						|
                             conds = {},
 | 
						|
                             filters = ['gdk_h_sources', 'gdk_c_sources'])
 | 
						|
 | 
						|
    vars['gdk_enums'] = 'gdkenumtypes.c gdkenumtypes.h'
 | 
						|
 | 
						|
    files = vars['gdk_h_sources'].split() + \
 | 
						|
            vars['gdk_c_sources'].split() + \
 | 
						|
            vars['gdk_enums'].split()
 | 
						|
 | 
						|
    sources = [i for i in files if (i != 'gdkkeysyms-compat.h')]
 | 
						|
 | 
						|
    with open(dest, 'w') as d:
 | 
						|
        for i in sources:
 | 
						|
            d.write(srcroot + '\\' + subdir + '\\' + i.replace('/', '\\') + '\n')
 | 
						|
 | 
						|
def gen_gdkwin32_filelist(srcroot, subdir, dest):
 | 
						|
    vars = read_vars_from_AM(os.path.join(srcroot, subdir, 'Makefile.am'),
 | 
						|
                             vars = {},
 | 
						|
                             conds = {'HAVE_INTROSPECTION': True,
 | 
						|
                                      'OS_WIN32': True},
 | 
						|
                             filters = ['w32_introspection_files'])
 | 
						|
 | 
						|
    files = vars['w32_introspection_files'].split()
 | 
						|
 | 
						|
    with open(dest, 'w') as d:
 | 
						|
        for i in files:
 | 
						|
            d.write(srcroot + '\\' + subdir + '\\' + i.replace('/', '\\') + '\n')
 | 
						|
 | 
						|
def gen_gtk_filelist(srcroot, subdir, dest):
 | 
						|
    vars = read_vars_from_AM(os.path.join(srcroot, 'gtk', 'Makefile.am'),
 | 
						|
                             vars = {},
 | 
						|
                             conds = {'USE_WIN32': True,
 | 
						|
                                      'USE_QUARTZ': False,
 | 
						|
                                      'USE_X11': False,
 | 
						|
                                      'USE_EXTERNAL_ICON_CACHE': False},
 | 
						|
                             filters = ['gtkinclude_HEADERS',
 | 
						|
                                        'a11yinclude_HEADERS',
 | 
						|
                                        'deprecatedinclude_HEADERS',
 | 
						|
                                        'gtk_base_c_sources',
 | 
						|
                                        'gtk_clipboard_dnd_c_sources'])
 | 
						|
 | 
						|
    vars_depr = read_vars_from_AM(os.path.join(srcroot, 'gtk', 'deprecated', 'Makefile.inc'),
 | 
						|
                                  vars = {},
 | 
						|
                                  conds = {},
 | 
						|
                                  filters = ['deprecated_h_sources',
 | 
						|
                                             'deprecated_c_sources'])
 | 
						|
 | 
						|
    vars_a11y = read_vars_from_AM(os.path.join(srcroot, 'gtk', 'a11y', 'Makefile.inc'),
 | 
						|
                                  vars = {},
 | 
						|
                                  conds = {},
 | 
						|
                                  filters = ['a11y_h_sources',
 | 
						|
                                             'a11y_c_sources'])
 | 
						|
 | 
						|
    vars['gtk_other_src'] = 'gtkprintoperation-win32.c gtktypebuiltins.h gtktypebuiltins.c'
 | 
						|
 | 
						|
    files = vars['gtkinclude_HEADERS'].split() + \
 | 
						|
            vars_a11y['a11y_h_sources'].split() + \
 | 
						|
            vars_depr['deprecated_h_sources'].split() + \
 | 
						|
            vars['gtk_base_c_sources'].split() + \
 | 
						|
            vars_a11y['a11y_c_sources'].split() + \
 | 
						|
            vars_depr['deprecated_c_sources'].split() + \
 | 
						|
            vars['gtk_other_src'].split()
 | 
						|
 | 
						|
    sources = [i for i in files \
 | 
						|
               if not (i.endswith('private.h')) \
 | 
						|
               and i != 'gtktextdisplay.h' \
 | 
						|
               and i != 'gtktextlayout.h' \
 | 
						|
               and i != 'gtkx.h']
 | 
						|
 | 
						|
    with open(dest, 'w') as d:
 | 
						|
        for i in sources:
 | 
						|
            d.write(srcroot + '\\' + subdir + '\\' + i.replace('/', '\\') + '\n')
 | 
						|
 | 
						|
def main(argv):
 | 
						|
    srcroot = '..'
 | 
						|
    subdir_gdk = 'gdk'
 | 
						|
    subdir_gtk = 'gtk'
 | 
						|
 | 
						|
    gen_gdk_filelist(srcroot, subdir_gdk, 'gdk_list')
 | 
						|
    gen_gdkwin32_filelist(srcroot, subdir_gdk, 'gdkwin32_list')
 | 
						|
    gen_gtk_filelist(srcroot, subdir_gtk, 'gtk_list')
 | 
						|
    return 0
 | 
						|
 | 
						|
if __name__ == '__main__':
 | 
						|
    sys.exit(main(sys.argv))
 |