--- libwx11-1.55.orig/Makefile +++ libwx11-1.55/Makefile @@ -0,0 +1,170 @@ +# +# Settings: +# +PACKAGE = libwx11 +VERSION = 1.55 + +CPU = x86_64 +IS_64BIT = true +WHICH = /bin/which +TOUCH = /bin/touch +CC = /usr/bin/gcc +X11_INC_DIR = /usr/include/X11 +X11_LIB32 = /usr/lib/libX11.so +X11_LIB32_DIR = /usr/lib +X11_LIB64 = /usr/lib64/libX11.so +X11_LIB64_DIR = /usr/lib64 +XPM_INC_DIR = /usr/include/X11 +XPM_LIB32 = /usr/lib/libXpm.so +XPM_LIB32_DIR = /usr/lib +XPM_LIB64 = /usr/lib64/libXpm.so +XPM_LIB64_DIR = /usr/lib64 +JPEG_INC_DIR = /usr/include +JPEG_LIB32 = /usr/lib/libjpeg.so +JPEG_LIB32_DIR = /usr/lib +JPEG_LIB64 = /usr/lib64/libjpeg.so +JPEG_LIB64_DIR = /usr/lib64 +PNG_INC_DIR = /usr/include +PNG_LIB32 = /usr/lib/libpng.so +PNG_LIB32_DIR = /usr/lib +PNG_LIB64 = /usr/lib64lib64/libpng.so +PNG_LIB64_DIR = /usr/lib64lib64 +BINDIR = /usr/bin +DATADIR = /usr/share + +# +# Makefile rules (Linux X11 version): +# +#DEBUG = -g -DDEBUG +CFLAGS = -O2 -Wall +RM = rm -rf +MKDIR = mkdir -p + +LIBRARY = $(PACKAGE).a +DISTNAME = $(PACKAGE)-$(VERSION) + +INCDIR = include/ +SRCDIR = src/ +PATHLIB32 = lib/ +OBJ32DIR = $(SRCDIR)obj32/ +LIBRARIES = $(PATHLIB32)$(LIBRARY) + +ifeq ($(IS_64BIT),true) + PATHLIB64 = lib64/ + OBJ64DIR = $(SRCDIR)obj64/ + LIBRARIES+=$(PATHLIB64)$(LIBRARY) +endif + +# +# Librerie +# +LIB_HEADERS = finestre.h tastiera.h colori.h + +LIB_SORGENTI = WX11_errors.c WX11_signals.c \ + WX11_init.c WX11_colors.c WX11_finestre.c \ + WX11_font.c WX11_print.c WX11_cmd.c \ + WX11_events.c WX11_alert.c WX11_menu.c \ + WX11_input.c WX11_listcmd.c WX11_scroll.c \ + WX11_timer.c WX11_exit.c WX11_border.c \ + WX11_listbox.c WX11_combobox.c WX11_checkbox.c \ + WX11_files.c WX11_viewfile.c \ + WX11_gc.c \ + WX11_imgbmp.c WX11_imgxpm.c WX11_imgjpeg.c WX11_imgpng.c \ + WX11_utils.c \ + WX11_sql.c \ + WX11_debug.c + +LIB_OGGETTI = $(LIB_SORGENTI:.c=.o) + +# Delete the default suffixes +.SUFFIXES: + + +all: $(LIBRARIES) sub1 sub2 +$(PATHLIB64)$(LIBRARY) : $(addprefix $(OBJ64DIR),$(LIB_OGGETTI)) + if test ! -d $(PATHLIB64); then $(MKDIR) $(PATHLIB64); fi + $(AR) r $(PATHLIB64)$(LIBRARY) $(addprefix $(OBJ64DIR),$(LIB_OGGETTI)) + $(TOUCH) examples/*.c + $(TOUCH) test/*.c + +$(PATHLIB32)$(LIBRARY) : $(addprefix $(OBJ32DIR),$(LIB_OGGETTI)) + if test ! -d $(PATHLIB32); then $(MKDIR) $(PATHLIB32); fi + $(AR) r $(PATHLIB32)$(LIBRARY) $(addprefix $(OBJ32DIR),$(LIB_OGGETTI)) + $(TOUCH) examples/*.c + $(TOUCH) test/*.c + +$(OBJ64DIR)%.o : $(SRCDIR)%.c $(addprefix $(INCDIR),$(LIB_HEADERS)) + if test ! -d $(OBJ64DIR); then $(MKDIR) $(OBJ64DIR); fi + $(CC) -c $(DEBUG) $(CFLAGS) -m64 -I$(X11_INC_DIR) -Iinclude -o $@ $< + +$(OBJ32DIR)%.o : $(SRCDIR)%.c $(addprefix $(INCDIR),$(LIB_HEADERS)) + if test ! -d $(OBJ32DIR); then $(MKDIR) $(OBJ32DIR); fi + $(CC) -c $(DEBUG) $(CFLAGS) -m32 -I$(X11_INC_DIR) -Iinclude -o $@ $< + +sub1: + cd examples && $(MAKE) + cd .. + +sub2: + cd test && $(MAKE) + cd .. + +tidy: + $(RM) $(SRCDIR)*~ ./*~ core + +clean: tidy + cd examples && $(MAKE) clean + cd .. + cd test && $(MAKE) clean + cd .. + +dist: + $(RM) $(DISTNAME) + $(MKDIR) $(DISTNAME) + $(MKDIR) $(DISTNAME)/rules + $(MKDIR) $(DISTNAME)/include + $(MKDIR) $(DISTNAME)/src + $(MKDIR) $(DISTNAME)/examples + $(MKDIR) $(DISTNAME)/test + + cp README INSTALL AUTHORS LICENSE $(DISTNAME) + cp configure PACKAGE VERSION $(DISTNAME) + cp ./rules/* $(DISTNAME)/rules + cp $(addprefix $(INCDIR),$(LIB_HEADERS)) $(DISTNAME)/include + cp $(addprefix $(SRCDIR),$(LIB_SORGENTI)) $(DISTNAME)/src + cp -R ./icons $(DISTNAME)/ + cp ./examples/*.c $(DISTNAME)/examples + cp ./test/*.c ./test/*.jpg $(DISTNAME)/test + + tar -czf $(DISTNAME).tar.gz $(DISTNAME) + + $(RM) $(DISTNAME) + +install: + if test -e $(PATHLIB32)$(LIBRARY); then \ + $(MKDIR) $(MAX_LIB32_DIR); \ + cp $(PATHLIB32)$(LIBRARY) $(MAX_LIB32_DIR); \ + fi + if test -e $(PATHLIB64)$(LIBRARY); then \ + $(MKDIR) $(MAX_LIB64_DIR); \ + cp $(PATHLIB64)$(LIBRARY) $(MAX_LIB64_DIR); \ + fi + if test -d $(INCDIR); then \ + $(MKDIR) $(MAX_INC_DIR); \ + cp $(addprefix $(INCDIR),$(LIB_HEADERS)) $(MAX_INC_DIR); \ + chmod 644 $(MAX_INC_DIR)/*; \ + fi + +uninstall: + if test -d $(MAX_LIB32_DIR); then \ + $(RM) $(MAX_LIB32_DIR); \ + fi + if test -d $(MAX_LIB64_DIR); then \ + $(RM) $(MAX_LIB64_DIR); \ + fi + $(RM) $(MAX_INC_DIR); + cd examples && $(MAKE) clean + cd .. + cd test && $(MAKE) clean + cd .. + --- libwx11-1.55.orig/test/Makefile +++ libwx11-1.55/test/Makefile @@ -0,0 +1,74 @@ +# +# Settings: +# +PACKAGE = libwx11 +VERSION = 1.55 + +CPU = x86_64 +IS_64BIT = true +WHICH = /bin/which +TOUCH = /bin/touch +CC = /usr/bin/gcc +X11_INC_DIR = /usr/include/X11 +X11_LIB32 = /usr/lib/libX11.so +X11_LIB32_DIR = /usr/lib +X11_LIB64 = /usr/lib64/libX11.so +X11_LIB64_DIR = /usr/lib64 +XPM_INC_DIR = /usr/include/X11 +XPM_LIB32 = /usr/lib/libXpm.so +XPM_LIB32_DIR = /usr/lib +XPM_LIB64 = /usr/lib64/libXpm.so +XPM_LIB64_DIR = /usr/lib64 +JPEG_INC_DIR = /usr/include +JPEG_LIB32 = /usr/lib/libjpeg.so +JPEG_LIB32_DIR = /usr/lib +JPEG_LIB64 = /usr/lib64/libjpeg.so +JPEG_LIB64_DIR = /usr/lib64 +PNG_INC_DIR = /usr/include +PNG_LIB32 = /usr/lib/libpng.so +PNG_LIB32_DIR = /usr/lib +PNG_LIB64 = /usr/lib64lib64/libpng.so +PNG_LIB64_DIR = /usr/lib64lib64 +BINDIR = /usr/bin +DATADIR = /usr/share + +# +# Makefile rules x test (Linux X11 version): +# +DEBUG = -g -DDEBUG +CFLAGS = -O2 -Wall +RM = rm -rf +MKDIR = mkdir -p + +LIBRARY = $(PACKAGE).a +DISTNAME = $(PACKAGE)-$(VERSION) + +INCDIR = ../include/ +SRCDIR = ./ +PATHLIB32 = ../lib/ +OBJ32DIR = $(SRCDIR)obj32/ +LIBRARIES = $(PATHLIB32)$(LIBRARY) + +APP_BIN =test + +ifeq ($(IS_64BIT),true) + PATHLIB64 = ../lib64/ + OBJ64DIR = $(SRCDIR)obj64/ + LIBRARIES+=" $(PATHLIB64)$(LIBRARY)" + APP_BIN64=$(addsuffix _64,$(APP_BIN)) +endif + +APP_BIN32=$(addsuffix _32,$(APP_BIN)) + +all:$(APP_BIN64) $(APP_BIN32) +%_64:%.c + $(CC) $< $(DEBUG) -m64 -I$(X11_INC_DIR) -I$(INCDIR) -L$(X11_LIB64_DIR) -lX11 -lXpm -L$(JPEG_LIB64_DIR) -ljpeg -L$(PATHLIB64) -lwx11 -o $@ + +%_32:%.c + $(CC) $< $(DEBUG) -m32 -I$(X11_INC_DIR) -I$(INCDIR) -L$(X11_LIB32_DIR) -lX11 -lXpm -L$(JPEG_LIB32_DIR) -ljpeg -L$(PATHLIB32) -lwx11 -o $@ + +tidy: + $(RM) ./*.o ./*~ ./*~ core + +clean: tidy + $(RM) $(addsuffix 64,$(APP_BIN)) $(addsuffix 32,$(APP_BIN)) --- libwx11-1.55.orig/src/config.h +++ libwx11-1.55/src/config.h @@ -0,0 +1,11 @@ +// +// config.h +// generated by configure +// +#define PACKAGE "libwx11" +#define VERSION "1.55" + +#define BINDIR "/usr/bin" +#define DATADIR "/usr/share" + +#define XPM --- libwx11-1.55.orig/examples/Makefile +++ libwx11-1.55/examples/Makefile @@ -0,0 +1,77 @@ +# +# Settings: +# +PACKAGE = libwx11 +VERSION = 1.55 + +CPU = x86_64 +IS_64BIT = true +WHICH = /bin/which +TOUCH = /bin/touch +CC = /usr/bin/gcc +X11_INC_DIR = /usr/include/X11 +X11_LIB32 = /usr/lib/libX11.so +X11_LIB32_DIR = /usr/lib +X11_LIB64 = /usr/lib64/libX11.so +X11_LIB64_DIR = /usr/lib64 +XPM_INC_DIR = /usr/include/X11 +XPM_LIB32 = /usr/lib/libXpm.so +XPM_LIB32_DIR = /usr/lib +XPM_LIB64 = /usr/lib64/libXpm.so +XPM_LIB64_DIR = /usr/lib64 +JPEG_INC_DIR = /usr/include +JPEG_LIB32 = /usr/lib/libjpeg.so +JPEG_LIB32_DIR = /usr/lib +JPEG_LIB64 = /usr/lib64/libjpeg.so +JPEG_LIB64_DIR = /usr/lib64 +PNG_INC_DIR = /usr/include +PNG_LIB32 = /usr/lib/libpng.so +PNG_LIB32_DIR = /usr/lib +PNG_LIB64 = /usr/lib64lib64/libpng.so +PNG_LIB64_DIR = /usr/lib64lib64 +BINDIR = /usr/bin +DATADIR = /usr/share + +# +# Makefile rules (Linux X11 version): +# +DEBUG = -g -DDEBUG +CFLAGS = -O2 -Wall +RM = rm -rf +MKDIR = mkdir -p + +LIBRARY = $(PACKAGE).a +DISTNAME = $(PACKAGE)-$(VERSION) + +INCDIR = ../include/ +SRCDIR = ./ +PATHLIB32 = ../lib/ +OBJ32DIR = $(SRCDIR)obj32/ +LIBRARIES = $(PATHLIB32)$(LIBRARY) + +APP_BIN = alert area button colors combobox exit \ + files gradient input listbox listboxrefresh \ + menu pixmap print say segnali timer viewfile + + +ifeq ($(IS_64BIT),true) + PATHLIB64 = ../lib64/ + OBJ64DIR = $(SRCDIR)obj64/ + LIBRARIES+=" $(PATHLIB64)$(LIBRARY)" + APP_BIN64=$(addsuffix _64,$(APP_BIN)) +endif + +APP_BIN32=$(addsuffix _32,$(APP_BIN)) + +all:$(APP_BIN64) $(APP_BIN32) +%_64:%.c + $(CC) $< $(DEBUG) -m64 -I$(X11_INC_DIR) -I$(INCDIR) -L$(X11_LIB64_DIR) -lX11 -L$(JPEG_LIB64_DIR) -ljpeg -L$(XPM_LIB64_DIR) -lXpm -L$(PATHLIB64) -lwx11 -o $@ + +%_32:%.c + $(CC) $< $(DEBUG) -m32 -I$(X11_INC_DIR) -I$(INCDIR) -L$(X11_LIB32_DIR) -lX11 -L$(JPEG_LIB32_DIR) -ljpeg -L$(XPM_LIB32_DIR) -lXpm -L$(PATHLIB32) -lwx11 -o $@ + +tidy: + $(RM) ./*.o ./*~ ./*~ core + +clean: tidy + $(RM) $(addsuffix _64,$(APP_BIN)) $(addsuffix _32,$(APP_BIN)) --- libwx11-1.55.orig/debian/changelog +++ libwx11-1.55/debian/changelog @@ -0,0 +1,11 @@ +libwx11 (1.55-2) unstable; urgency=low + + * Fixed minor problem. libwx11-0 suggests libwx11-0-dbg now. + + -- Miriam Ruiz Sun, 16 Aug 2009 18:57:54 +0200 + +libwx11 (1.55-1) unstable; urgency=low + + * Initial release. Closes: #532682 + + -- Miriam Ruiz Sat, 11 Jul 2009 19:40:22 +0200 --- libwx11-1.55.orig/debian/libwx11-0.install +++ libwx11-1.55/debian/libwx11-0.install @@ -0,0 +1 @@ +debian/tmp/usr/lib/lib*.so.* usr/lib/ --- libwx11-1.55.orig/debian/rules +++ libwx11-1.55/debian/rules @@ -0,0 +1,73 @@ +#!/usr/bin/make -f + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +config: config-stamp +config-stamp: + dh_testdir + [ ! -d debian/patches ] || $(MAKE) -f /usr/share/quilt/quilt.make patch + ./configure --bindir=/usr/bin --datadir=/usr/share + touch $@ + +build: build-stamp +build-stamp: config + dh_testdir + $(MAKE) -C $(CURDIR)/src -f $(CURDIR)/debian/Makefile \ + CFLAGS="$(CFLAGS)" \ + LDFLAGS="-Wl,-z,defs -Wl,--as-needed -Wl,--no-undefined" + touch $@ + +clean: config + dh_testdir + dh_testroot + rm -f build-stamp config-stamp + $(MAKE) -C $(CURDIR)/src -f $(CURDIR)/debian/Makefile clean + [ ! -d debian/patches ] || $(MAKE) -f /usr/share/quilt/quilt.make unpatch + dh_clean + +install: build + dh_testdir + dh_testroot + dh_prep + dh_installdirs + $(MAKE) -C $(CURDIR)/src -f $(CURDIR)/debian/Makefile DESTDIR=$(CURDIR)/debian/tmp install + +# Build architecture-independent files here. +binary-indep: install + +# Build architecture-dependent files here. +binary-arch: install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installexamples + dh_install +# dh_installmenu +# dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_python +# dh_installinit +# dh_installcron +# dh_installinfo + dh_installman +# dh_desktop + dh_link + dh_strip --dbg-package=libwx11-0-dbg + dh_compress + dh_fixperms +# dh_perl + dh_makeshlibs + [ ! -e /usr/bin/dh_buildinfo ] || dh_buildinfo + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: config build clean binary-indep binary-arch binary install --- libwx11-1.55.orig/debian/compat +++ libwx11-1.55/debian/compat @@ -0,0 +1 @@ +7 --- libwx11-1.55.orig/debian/wx11.pc +++ libwx11-1.55/debian/wx11.pc @@ -0,0 +1,12 @@ +prefix=/usr +exec_prefix=${prefix} +libdir=${exec_prefix}/lib +includedir=${prefix}/include/wx11 + +Name: wx11 +Description: description +Version: 0.0 +Requires: x11 +Conflicts: +Libs: -L${libdir} -lwx11 +Cflags: -I${includedir} --- libwx11-1.55.orig/debian/docs +++ libwx11-1.55/debian/docs @@ -0,0 +1 @@ +README --- libwx11-1.55.orig/debian/copyright +++ libwx11-1.55/debian/copyright @@ -0,0 +1,25 @@ +Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat +Upstream-Source: http://sourceforge.net/projects/libwx11 +Upstream-Maintainer: Max Cavallo +Debianized-By: Miriam Ruiz +Debianized-Date: Mon, 25 May 2009 18:52:34 +0200 + +Files: * +Copyright: Copyright (C) 2007-2009, Max Cavallo +Licence: GPL-2+ + +Files: debian/* +Copyright: Copyright (C) 2009, Miriam Ruiz +Licence: GPL-2+ + +Licence: GPL-2+ + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + . + On Debian systems, the complete text of the latest version of the GNU + General Public License can be found in `/usr/share/common-licenses/GPL'. + . + The complete text of version 2 of the GNU General Public License can be + found in `/usr/share/common-licenses/GPL-2'. --- libwx11-1.55.orig/debian/Makefile +++ libwx11-1.55/debian/Makefile @@ -0,0 +1,105 @@ +LIBRARY=libwx11 + +all: $(LIBRARY).a $(LIBRARY).so + +MAJOR=0 +MINOR=0d0 + +INCLUDE_DIR = ../include + +#SOURCES = $(shell find . -name "*.c") + +SOURCES = \ + WX11_imgbmp.c \ + WX11_colors.c \ + WX11_combobox.c \ + WX11_font.c \ + WX11_border.c \ + WX11_finestre.c \ + WX11_gc.c \ + WX11_menu.c \ + WX11_viewfile.c \ + WX11_events.c \ + WX11_listbox.c \ + WX11_files.c \ + WX11_imgjpeg.c \ + WX11_alert.c \ + WX11_timer.c \ + WX11_exit.c \ + WX11_imgpng.c \ + WX11_scroll.c \ + WX11_debug.c \ + WX11_checkbox.c \ + WX11_cmd.c \ + WX11_utils.c \ + WX11_imgxpm.c \ + WX11_listcmd.c \ + WX11_init.c \ + WX11_input.c \ + WX11_print.c \ + WX11_signals.c \ + WX11_errors.c + +SHARED_OBJS = $(SOURCES:.c=.shared.o) +STATIC_OBJS = $(SOURCES:.c=.static.o) + +EXTRA_CFLAGS=-I$(INCLUDE_DIR) `pkg-config x11 xpm --cflags` +STATIC_CFLAGS= -O2 -g -Wall $(EXTRA_CFLAGS) +SHARED_CFLAGS= $(STATIC_CFLAGS) -fPIC + +LDFLAGS= -Wl,-z,defs -Wl,--as-needed -Wl,--no-undefined +EXTRA_LDFLAGS= +LIBS= -ljpeg `pkg-config x11 xpm --libs` + +$(LIBRARY).so.$(MAJOR).$(MINOR): $(SHARED_OBJS) + g++ $(LDFLAGS) $(EXTRA_LDFLAGS) -shared \ + -Wl,-soname,$(LIBRARY).so.$(MAJOR) \ + -o $(LIBRARY).so.$(MAJOR).$(MINOR) \ + $+ -o $@ $(LIBS) + +$(LIBRARY).so: $(LIBRARY).so.$(MAJOR).$(MINOR) + rm -f $@.$(MAJOR) + ln -s $@.$(MAJOR).$(MINOR) $@.$(MAJOR) + rm -f $@ + ln -s $@.$(MAJOR) $@ + +$(LIBRARY).a: $(STATIC_OBJS) + ar cru $@ $+ + +%.shared.o: %.cpp + g++ -o $@ -c $+ $(SHARED_CFLAGS) + +%.shared.o: %.c + gcc -o $@ -c $+ $(SHARED_CFLAGS) + +%.so : %.o + g++ $(LDFLAGS) $(EXTRA_LDFLAGS) -shared $^ -o $@ + +%.static.o: %.cpp + g++ -o $@ -c $+ $(STATIC_CFLAGS) + +%.static.o: %.c + gcc -o $@ -c $+ $(STATIC_CFLAGS) + +clean: + rm -f $(SHARED_OBJS) + rm -f $(STATIC_OBJS) + rm -f $(FIXED_OBJS) + rm -f $(STATIC_FIXED_OBJS) + rm -f *.so *.so* *.a *~ + +DESTDIR= + +install: $(LIBRARY).a $(LIBRARY).so + mkdir -p "$(DESTDIR)/usr/lib/" + cp -a *.a "$(DESTDIR)/usr/lib/" + cp -a *.so* "$(DESTDIR)/usr/lib/" + mkdir -p "$(DESTDIR)/usr/include/" + + find $(INCLUDE_DIR) -name "*.h" | \ + while read f; do \ + t=`echo "$$f" | sed -e 's|^$(INCLUDE_DIR)/|/usr/include/wx11/|'` ; \ + d=`dirname "$$t"`; \ + mkdir -p "$(DESTDIR)/$$d" ; \ + cp "$$f" "$(DESTDIR)/$$t"; \ + done --- libwx11-1.55.orig/debian/control +++ libwx11-1.55/debian/control @@ -0,0 +1,37 @@ +Source: libwx11 +Section: libs +Priority: extra +Maintainer: Miriam Ruiz +Build-Depends: debhelper (>= 7), dh-buildinfo, autotools-dev, pkg-config, + libxpm-dev, libjpeg62-dev, libpng-dev, libx11-dev +Standards-Version: 3.8.2 +Homepage: http://libwx11.sourceforge.net/ + +Package: libwx11-dev +Section: libdevel +Architecture: any +Depends: libwx11-0 (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends} +Description: library to manage xlib - devel + libwx11 is a library makes it easier to implement GUI interfaces using + just x11. + . + This package contains the development libraries and headers. + +Package: libwx11-0 +Section: libs +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Suggests: libwx11-0-dbg (= ${binary:Version}), libwx11-dev (= ${binary:Version}) +Description: library to manage xlib + libwx11 is a library makes it easier to implement GUI interfaces using + just x11. + +Package: libwx11-0-dbg +Section: debug +Architecture: any +Depends: libwx11-0 (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends} +Description: library to manage xlib - debug + libwx11 is a library makes it easier to implement GUI interfaces using + just x11. + . + This package contains the debugging symbols. --- libwx11-1.55.orig/debian/libwx11-dev.install +++ libwx11-1.55/debian/libwx11-dev.install @@ -0,0 +1,4 @@ +debian/tmp/usr/include/* usr/include/ +debian/tmp/usr/lib/lib*.a usr/lib/ +debian/tmp/usr/lib/lib*.so usr/lib/ +debian/wx11.pc usr/lib/pkgconfig/