1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00

devel/gps: update to 5.2.1

- Update to 5.2.1
- Remove ABI version for LIB_DEPENDS
- Add READLINE option
- Auto generate pkg-plist

PR:		ports/180198
Submitted by:	John Marino <draco@marino.st> (maintainer)
This commit is contained in:
William Grzybowski 2013-07-02 14:10:45 +00:00
parent ec8f26835a
commit 6fe2bfb099
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=322171
18 changed files with 192 additions and 1212 deletions

View File

@ -2,19 +2,20 @@
# $FreeBSD$
PORTNAME= gps
PORTVERSION= 5.0.1
PORTREVISION= 2
PORTVERSION= 5.2.1
CATEGORIES= devel
MASTER_SITES= http://downloads.dragonlace.net/src/
DISTNAME= gps-5.2.1-1-src
EXTRACT_SUFX= .tgz
MAINTAINER= draco@marino.st
COMMENT= GNAT Programming Studio - IDE for Ada and many other languages
BUILD_DEPENDS= gtkada<2.24:${PORTSDIR}/x11-toolkits/gtkada \
BUILD_DEPENDS= gtkada>=2.24:${PORTSDIR}/x11-toolkits/gtkada \
xmlada>=3.2:${PORTSDIR}/textproc/xmlada \
gprbuild>=20120510:${PORTSDIR}/devel/gprbuild
RUN_DEPENDS= gtkada<2.24:${PORTSDIR}/x11-toolkits/gtkada
LIB_DEPENDS= gmp.10:${PORTSDIR}/math/gmp
gprbuild>=20120510:${PORTSDIR}/devel/gprbuild \
sphinx-build:${PORTSDIR}/textproc/py-sphinx
LIB_DEPENDS= gmp:${PORTSDIR}/math/gmp
LATEST_LINK= gps-ide
@ -23,12 +24,15 @@ USE_GMAKE= yes
USE_BZIP2= yes
USE_PERL5_BUILD= yes
ALL_TARGET= default
USES+= ada
USES= ada
WRKSRC= ${WRKDIR}/gps-release-ide-${PORTVERSION}-src
CONFIGURE_ENV+= AWK=/usr/bin/awk
DESTINY= ${WRKDIR}/destino
MAKE_ENV+= DESTDIR=${DESTINY}
OPTIONS_DEFINE= SYSLOG SQLITE PGSQL PYTHON
OPTIONS_DEFAULT= SYSLOG
OPTIONS_DEFINE= SYSLOG SQLITE PGSQL PYTHON READLINE
OPTIONS_DEFAULT= SYSLOG SQLITE PYTHON READLINE
PYTHON_DESC= Enable Python console
@ -38,16 +42,25 @@ PYTHON_DESC= Enable Python console
CONFIGURE_TARGET= ${ARCH:S/amd64/x86_64/}-portbld-${OPSYS:L}${OSREL}
.endif
CONFIGURE_ARGS+= --with-gmp=${PREFIX}
CONFIGURE_ARGS+= --disable-shared --with-gmp=${PREFIX}
################
## READLINE ##
################
.if ${PORT_OPTIONS:MREADLINE}
USES+= readline
CONFIGURE_ARGS+= --enable-gpl
.else
CONFIGURE_ARGS+= --disable-readline
.endif
##############
## SYSLOG ##
##############
.if ${PORT_OPTIONS:MSYSLOG}
CONFIGURE_ARGS+= --enable-syslog=yes
.else
CONFIGURE_ARGS+= --enable-syslog=no
.if !${PORT_OPTIONS:MSYSLOG}
CONFIGURE_ARGS+= --disable-syslog
.endif
##############
@ -55,9 +68,9 @@ CONFIGURE_ARGS+= --enable-syslog=no
##############
.if ${PORT_OPTIONS:MSQLITE}
CONFIGURE_ARGS+= --with-sqlite=${PREFIX}
BUILD_DEPENDS+= sqlite3>=3:${PORTSDIR}/databases/sqlite3
RUN_DEPENDS+= sqlite3>=3:${PORTSDIR}/databases/sqlite3
CONFIGURE_ARGS+= --with-sqlite=embedded
.else
CONFIGURE_ARGS+= --without-sqlite
.endif
##################
@ -75,23 +88,40 @@ USE_PGSQL= true
.if ${PORT_OPTIONS:MPYTHON}
CONFIGURE_ARGS+= --with-python=${PREFIX}
CONFIGURE_ARGS+= --enable-shared-python=yes
CONFIGURE_ARGS+= --enable-pygtk
PLIST_SUB+= PYSUPPORT=""
USE_PYTHON= -2.7
BUILD_DEPENDS+= py2[67]-gtk>=2.22:${PORTSDIR}/x11-toolkits/py-gtk2
RUN_DEPENDS+= py2[67]-gtk>=2.22:${PORTSDIR}/x11-toolkits/py-gtk2
USE_GNOME= pygtk2
PYCOMPILE= ${PREFIX}/lib/${PYTHON_VERSION}/compileall.py
.else
CONFIGURE_ARGS+= --without-python
CONFIGURE_ARGS+= --disable-pygtk
PLIST_SUB+= PYSUPPORT="@comment "
CONFIGURE_ARGS+= --without-python \
--disable-pygtk \
--disable-pygobject
.endif
post-patch:
@${REINPLACE_CMD} -e "s|@PREFIX@|${PREFIX}|g" \
${WRKSRC}/gnatlib/src/gnatcoll_readline.gpr.in
pre-install:
.if ${PORT_OPTIONS:MPYTHON}
${PYTHON_CMD} ${PYCOMPILE} ${WRKSRC}/share/plug-ins
${PYTHON_CMD} ${PYCOMPILE} ${WRKSRC}/share/library
.endif
post-install:
${RM} -rf ${DESTINY}${PREFIX}/share/doc/gps/html/users_guide/_sources
${RM} -rf ${DESTINY}${PREFIX}/share/doc/gps/html/tutorial/_sources
cd ${DESTINY}${PREFIX}; ${FIND} * -type d -empty -print | xargs rmdir
${CP} -pR ${DESTINY}${PREFIX}/ ${PREFIX}/
@cd ${DESTINY}${PREFIX}; ${FIND} * \( -type f -or -type l \) | \
${SORT} > ${WRKDIR}/PLIST.all
@cd ${DESTINY}${PREFIX}; ${FIND} * -type d | ${AWK} '/\//' | ${SORT} -r | \
${SED} -e '/share\/doc$$/d' -e '/share\/gps$$/d' \
-e '/share\/gps\/plug-ins$$/d' -e '/share\/examples$$/d' \
-e 's/^/@dirrm /g' >> ${WRKDIR}/PLIST.all
@echo "@unexec rmdir %D/share/gps/plug-ins 2>/dev/null || true" >> ${WRKDIR}/PLIST.all
@echo "@unexec rmdir %D/share/gps 2>/dev/null || true" >> ${WRKDIR}/PLIST.all
@echo "@unexec rmdir %D/share/examples 2>/dev/null || true" >> ${WRKDIR}/PLIST.all
@echo "@unexec rmdir %D/share/doc 2>/dev/null || true" >> ${WRKDIR}/PLIST.all
@${CAT} ${WRKDIR}/PLIST.all >> ${TMPPLIST}
.include <bsd.port.mk>

View File

@ -1,2 +1,2 @@
SHA256 (gps-5.0.1.tar.bz2) = d7228e3fd915e47a4af30d72cc6bba77cd95479f1289b3b525d66aa8d94176a5
SIZE (gps-5.0.1.tar.bz2) = 9303980
SHA256 (gps-5.2.1-1-src.tgz) = 34775c02ccdb70bf4eef0ef6378cd947da8aa66edc9f06bc26ab14a6da549132
SIZE (gps-5.2.1-1-src.tgz) = 27925475

View File

@ -1,19 +1,6 @@
--- Makefile.in.orig 2010-09-24 10:51:03.000000000 +0200
+++ Makefile.in 2011-10-11 17:59:53.000000000 +0200
@@ -11,10 +11,12 @@
prefix = @prefix@
bindir = $(prefix)/bin
sharedir = $(prefix)/share
+docdir = $(prefix)/share/doc/gps
examplesdir = $(prefix)/share/examples/gps
default:
$(MAKE) -C gps $@
+ $(AWK) -f distrib/gnat_switches.awk < gnat/gnat_ugn.texi > share/plug-ins/gnat_switches.py
clean:
$(MAKE) -C gps $@
@@ -24,12 +26,13 @@
--- Makefile.in.orig 2012-06-08 09:54:29.000000000 +0000
+++ Makefile.in
@@ -32,11 +32,12 @@ test-clean:
(cd scripts; ./testsuites clean)
install-common:
@ -22,18 +9,16 @@
- $(MKDIR) $(examplesdir)
- $(MKDIR) $(sharedir)/gps
- $(MKDIR) $(sharedir)/gps/docgen2
- $(MKDIR) $(sharedir)/gps/aunit
+ $(MKDIR) $(DESTDIR)$(bindir)
+ $(MKDIR) $(DESTDIR)$(sharedir)
+ $(MKDIR) $(DESTDIR)$(docdir)
+ $(MKDIR) $(DESTDIR)$(examplesdir)
+ $(MKDIR) $(DESTDIR)$(sharedir)/gps
+ $(MKDIR) $(DESTDIR)$(sharedir)/gps/docgen2
+ $(MKDIR) $(DESTDIR)$(sharedir)/gps/aunit
+ $(MKDIR) $(DESTDIR)$(sharedir)/gps/plug-ins
ifeq ($(OS),Windows_NT)
# On Windows we distribute two versions of subversion.xml, one that
# supports Cygwin/Subversion and one for native Subversion.
@@ -42,45 +45,40 @@
@@ -49,39 +50,34 @@ ifeq ($(OS),Windows_NT)
share/plug-ins/_subversion_ \
> share/plug-ins/subversion_native_windows.xml
endif
@ -61,50 +46,59 @@
- (cd share; tar cf - library/*.py) | (cd $(sharedir)/gps; tar xf -)
- (cd share; tar cf - library/pygps/*.py) | (cd $(sharedir)/gps; tar xf -)
- $(RM) $(sharedir)/gps/plug-ins/emacs.xml
- $(RM) $(sharedir)/gps/plug-ins/python_doc.py
- $(RM) $(sharedir)/gps/plug-ins/python_doc.pyc
- $(RM) $(sharedir)/gps/shell_commands.xml
- (cd share; tar cf - icons/) | (cd $(sharedir)/gps; tar xf -)
- (cd share; tar cf - templates/) | (cd $(sharedir)/gps; tar xf -)
- (cd share; tar cf - *.*) | (cd $(sharedir)/gps; tar xf -)
+ (cd share; tar cf - plug-ins/*.py*) | (cd $(DESTDIR)$(sharedir)/gps; tar xf -)
+ (cd share; tar cf - plug-ins/gps_utils/*.py*) | (cd $(DESTDIR)$(sharedir)/gps; tar xf -)
+ (cd share; tar cf - plug-ins/spark/*.py*) | (cd $(DESTDIR)$(sharedir)/gps; tar xf -)
+ $(AWK) -f distrib/gnat_switches.awk < gnat/gnat_ugn.texi > $(DESTDIR)$(sharedir)/gps/plug-ins/gnat_switches.py
+ (cd share; tar cf - plug-ins/*.py) | (cd $(DESTDIR)$(sharedir)/gps; tar xf -)
+ (cd share; tar cf - plug-ins/gps_utils/*.py) | (cd $(DESTDIR)$(sharedir)/gps; tar xf -)
+ (cd share; tar cf - plug-ins/spark/*.py) | (cd $(DESTDIR)$(sharedir)/gps; tar xf -)
+ (cd share; tar cf - plug-ins/*.png) | (cd $(DESTDIR)$(sharedir)/gps; tar xf -)
+ (cd share; tar cf - plug-ins/images/*.png) | (cd $(DESTDIR)$(sharedir)/gps; tar xf -)
+ (cd share; tar cf - library/*.xml) | (cd $(DESTDIR)$(sharedir)/gps; tar xf -)
+ (cd share; tar cf - library/*.py*) | (cd $(DESTDIR)$(sharedir)/gps; tar xf -)
+ (cd share; tar cf - library/pygps/*.py*) | (cd $(DESTDIR)$(sharedir)/gps; tar xf -)
+ (cd share; tar cf - library/*.py) | (cd $(DESTDIR)$(sharedir)/gps; tar xf -)
+ (cd share; tar cf - library/pygps/*.py) | (cd $(DESTDIR)$(sharedir)/gps; tar xf -)
+ $(RM) $(DESTDIR)$(sharedir)/gps/plug-ins/emacs.xml
+ (cd share; tar cf - icons/) | (cd $(DESTDIR)$(sharedir)/gps; tar xf -)
+ (cd share; tar cf - templates/) | (cd $(DESTDIR)$(sharedir)/gps; tar xf -)
+ (cd share; tar cf - *.*) | (cd $(DESTDIR)$(sharedir)/gps; tar xf -)
+ $(RM) $(DESTDIR)$(sharedir)/gps/plug-ins/python_doc.py
+ $(RM) $(DESTDIR)$(sharedir)/gps/plug-ins/python_doc.pyc
+ $(RM) $(DESTDIR)$(sharedir)/gps/shell_commands.xml
+ (cd share; tar cf - icons/) | (cd $(DESTDIR)$(sharedir)/gps; tar xf -)
+ (cd share; tar cf - templates/) | (cd $(DESTDIR)$(sharedir)/gps; tar xf -)
+ (cd share; tar cf - *.*) | (cd $(DESTDIR)$(sharedir)/gps; tar xf -)
(cd docgen2/resources; tar cf - *.tmpl custom/*.css support/*.css support/*.js support/images/*.png) \
- | (cd $(sharedir)/gps/docgen2; tar xf -)
+ | (cd $(DESTDIR)$(sharedir)/gps/docgen2; tar xf -)
(cd aunit/templates; tar cf - *.tmpl) \
- | (cd $(sharedir)/gps/aunit; tar xf -)
- $(MAKE) -C docs install
$(MAKE) -C docs install
- (cd examples; tar cf - --exclude .svn . ) | (cd $(examplesdir); tar xf -)
+ | (cd $(DESTDIR)$(sharedir)/gps/aunit; tar xf -)
+ ${INSTALL} docs/gps-splash.png $(DESTDIR)$(sharedir)/gps
+ (cd docs; tar -cf - html/) | (cd $(DESTDIR)$(docdir); tar xf -)
+ (cd examples; tar cf - --exclude .svn . ) | (cd $(DESTDIR)$(examplesdir); tar xf -)
install: install-common
ifeq ($(OS),Windows_NT)
$(INSTALL_PROGRAM) gps/obj/gps.exe $(bindir)
@@ -90,9 +86,9 @@ ifeq ($(OS),Windows_NT)
$(INSTALL_PROGRAM) spark/obj/gnatspark.exe $(bindir)
$(MAKE) -C common/expect install
else
- $(INSTALL_PROGRAM) gps/obj/gps $(bindir)
- $(INSTALL_PROGRAM) gnatlib/src/obj/gnatinspect $(bindir)
- $(INSTALL_PROGRAM) spark/obj/gnatspark $(bindir)
+ $(INSTALL_PROGRAM) gps/obj/gps $(DESTDIR)$(bindir)
+ $(INSTALL_PROGRAM) gnatlib/src/obj/gnatinspect $(DESTDIR)$(bindir)
+ $(INSTALL_PROGRAM) spark/obj/gnatspark $(DESTDIR)$(bindir)
endif
install-strip: install-common
@@ -89,8 +87,8 @@
@@ -102,9 +98,9 @@ ifeq ($(OS),Windows_NT)
$(INSTALL_PROGRAM) distrib/gps_run.cmd $(bindir)
$(MAKE) -C common/expect install-strip
else
- $(INSTALL_PROGRAM) -s gps/obj/gps $(bindir)/gps_exe
- $(INSTALL_PROGRAM) -s spark/obj/gnatspark $(bindir)
- $(INSTALL_PROGRAM) distrib/.gps_wrapper $(bindir)/gps
+ $(INSTALL_PROGRAM) -s gps/obj/gps $(DESTDIR)$(bindir)/gps_exe
+ $(INSTALL_PROGRAM) -s spark/obj/gnatspark $(DESTDIR)$(bindir)
+ $(INSTALL_PROGRAM) distrib/.gps_wrapper $(DESTDIR)$(bindir)/gps
endif

View File

@ -1,24 +0,0 @@
$NetBSD: patch-ada__module_core_src_ada__semantic__tree-generics.adb,v 1.1 2012/07/08 20:23:50 marino Exp $
--- ada_module/core/src/ada_semantic_tree-generics.adb.orig 2010-09-17 09:28:03.000000000 +0000
+++ ada_module/core/src/ada_semantic_tree-generics.adb
@@ -389,14 +389,12 @@ package body Ada_Semantic_Tree.Generics
Cached : Cache_Access := Get_Cache (Info);
begin
if Cached /= null then
- Result := new Declaration_View_Record'
- (Entity =>
- To_Entity_Access
- (Instanciated_Package (Cached.all).Generic_Package),
- Generic_Context =>
+ Result := new Declaration_View_Record;
+ Declaration_View_Record (Result.all).Generic_Context :=
To_Active
- (Instanciated_Package (Cached.all).Generic_Context),
- others => <>);
+ (Instanciated_Package (Cached.all).Generic_Context);
+ Result.Entity := To_Entity_Access
+ (Instanciated_Package (Cached.all).Generic_Package);
Ref (Declaration_View_Record (Result.all).Generic_Context);

View File

@ -1,24 +0,0 @@
--- common/tty/terminals.c.orig 2009-09-30 11:30:08.000000000 +0200
+++ common/tty/terminals.c 2011-10-09 02:58:53.000000000 +0200
@@ -31,7 +31,10 @@
#ifndef WIN32
/* First defined some macro to identify easily some systems */
-#if defined (__FreeBSD__) || defined (__NetBSD__)
+#if defined (__FreeBSD__) \
+ || defined (__OpenBSD__) \
+ || defined (__NetBSD__) \
+ || defined (__DragonFly__)
# define FREEBSD
#endif
#if defined (__alpha__) && defined (__osf__)
@@ -260,7 +263,9 @@
#ifndef NLDLY
#define NLDLY 0
#define CRDLY 0
+#ifndef TABDLY
#define TABDLY 0
+#endif
#define BSDLY 0
#define VTDLY 0
#define FFDLY 0

View File

@ -0,0 +1,12 @@
--- common/tty/terminals.c.orig 2011-09-21 06:29:53.000000000 +0000
+++ common/tty/terminals.c
@@ -236,7 +236,9 @@ allocate_pty_desc (pty_desc **desc) {
#ifndef NLDLY
#define NLDLY 0
#define CRDLY 0
+#ifndef TABDLY
#define TABDLY 0
+#endif
#define BSDLY 0
#define VTDLY 0
#define FFDLY 0

View File

@ -0,0 +1,49 @@
--- docs/Makefile.in.orig 2012-05-31 13:21:06.000000000 +0000
+++ docs/Makefile.in
@@ -15,29 +15,29 @@ gps_pg:
make -C programers_guide html
ug:
- make -C users_guide html latexpdf
+ make -C users_guide html
.PHONY: tutorial
tutorial:
make -C tutorial html
install:
- $(MKDIR) $(docdir)
- $(MKDIR) $(docdir)/html
- $(MKDIR) $(docdir)/pdf
- -$(INSTALL_DATA) gps-welcome.html $(docdir)/html
- -$(CP) users_guide/GPS.py $(sharedir)/library/GPS_doc.py
-
- ${MKDIR} $(docdir)/html/users_guide/
- -${CP} -r users_guide/_build/html/* $(docdir)/html/users_guide/
- -${CP} users_guide/_build/latex/GPS.pdf $(docdir)/pdf/gps.pdf
-
- ${MKDIR} $(docdir)/html/tutorial/
- -${CP} -r tutorial/_build/html/* $(docdir)/html/tutorial/
-
- -$(INSTALL_DATA) gps-splash.png $(sharedir)
- -${INSTALL_DATA} gps_index.xml ${docdir}/html
- -${INSTALL_DATA} help_index.html ${docdir}/html
+ $(MKDIR) $(DESTDIR)$(docdir)
+ $(MKDIR) $(DESTDIR)$(docdir)/html
+ $(MKDIR) $(DESTDIR)$(docdir)/pdf
+ -$(INSTALL_DATA) gps-welcome.html $(DESTDIR)$(docdir)/html
+ -$(CP) users_guide/GPS.py $(DESTDIR)$(sharedir)/library/GPS_doc.py
+
+ ${MKDIR} $(DESTDIR)$(docdir)/html/users_guide/
+ -${CP} -r users_guide/_build/html/* $(DESTDIR)$(docdir)/html/users_guide/
+ -${CP} users_guide/_build/latex/GPS.pdf $(DESTDIR)$(docdir)/pdf/gps.pdf
+
+ ${MKDIR} $(DESTDIR)$(docdir)/html/tutorial/
+ -${CP} -r tutorial/_build/html/* $(DESTDIR)$(docdir)/html/tutorial/
+
+ -$(INSTALL_DATA) gps-splash.png $(DESTDIR)$(sharedir)
+ -${INSTALL_DATA} gps_index.xml $(DESTDIR)${docdir}/html
+ -${INSTALL_DATA} help_index.html $(DESTDIR)${docdir}/html
clean:
-${RM} -rf */_build/

View File

@ -1,31 +1,11 @@
--- gnatlib/aclocal.m4.orig 2010-07-19 10:57:13.000000000 +0200
+++ gnatlib/aclocal.m4 2011-10-11 03:05:28.000000000 +0200
@@ -452,6 +452,18 @@
*-darwin* )
PYTHON_LIBS="-ldl -lm ${PYTHON_LIBS}"
;;
+ *-freebsd* )
+ PYTHON_LIBS="-lm -lutil ${PYTHON_LIBS}"
+ ;;
+ *-dragonfly* )
+ PYTHON_LIBS="-lm -lutil ${PYTHON_LIBS}"
+ ;;
+ *-netbsd* )
+ PYTHON_LIBS="-lm -lutil ${PYTHON_LIBS}"
+ ;;
+ *-openbsd* )
+ PYTHON_LIBS="-lm -lutil ${PYTHON_LIBS}"
+ ;;
x86_64-*-* )
PYTHON_LIBS="-Wl,-export-dynamic -lm -ldl ${PYTHON_LIBS}"
;;
@@ -460,9 +472,6 @@
;;
i[[3456]]86-*win32* | i[[3456]]86-*mingw32* | i[[3456]]86-*cygwin* )
;;
- *-freebsd* )
- PYTHON_LIBS="-lm -lutil ${PYTHON_LIBS}"
- ;;
esac
if test -f ${PYTHON_DIR}/libpython${PYTHON_VERSION}.a ; then
--- gnatlib/aclocal.m4.orig 2012-09-13 12:50:01.000000000 +0000
+++ gnatlib/aclocal.m4
@@ -643,7 +643,7 @@ AC_HELP_STRING(
ia64-*hp-hpux11* )
PYTHON_LIBS="-ldld -ldl -lm -Wl,-E ${PYTHON_LIBS}"
;;
- *-freebsd* )
+ *-dragonfly* | *-freebsd* | *-netbsd* | *-openbsd* )
PYTHON_LIBS="-lm -lutil ${PYTHON_LIBS}"
;;
esac

View File

@ -1,22 +1,11 @@
--- gnatlib/configure.orig 2010-10-14 12:02:43.000000000 +0200
+++ gnatlib/configure 2011-10-11 03:07:02.000000000 +0200
@@ -3501,6 +3501,9 @@
*-darwin* )
PYTHON_LIBS="-ldl -lm ${PYTHON_LIBS}"
;;
+ *-freebsd* | *-dragonfly* | *-netbsd* | *-openbsd* )
+ PYTHON_LIBS="-lm -lutil ${PYTHON_LIBS}"
+ ;;
x86_64-*-* )
PYTHON_LIBS="-Wl,-export-dynamic -lm -ldl ${PYTHON_LIBS}"
;;
@@ -3509,9 +3512,6 @@
;;
i[3456]86-*win32* | i[3456]86-*mingw32* | i[3456]86-*cygwin* )
;;
- *-freebsd* )
- PYTHON_LIBS="-lm -lutil ${PYTHON_LIBS}"
- ;;
esac
if test -f ${PYTHON_DIR}/libpython${PYTHON_VERSION}.a ; then
--- gnatlib/configure.orig 2012-09-13 12:50:01.000000000 +0000
+++ gnatlib/configure
@@ -4083,7 +4083,7 @@ $as_echo_n "checking if we can link with
ia64-*hp-hpux11* )
PYTHON_LIBS="-ldld -ldl -lm -Wl,-E ${PYTHON_LIBS}"
;;
- *-freebsd* )
+ *-dragonfly* | *-freebsd* | *-netbsd* | *-openbsd* )
PYTHON_LIBS="-lm -lutil ${PYTHON_LIBS}"
;;
esac

View File

@ -0,0 +1,21 @@
--- gnatlib/src/gnatcoll_readline.gpr.in.orig 2012-07-13 14:11:00.000000000 +0000
+++ gnatlib/src/gnatcoll_readline.gpr.in
@@ -6,7 +6,7 @@ project GnatColl_Readline is
when "yes" =>
for Languages use ("Ada");
for Source_Dirs use ("readline", "readline/with_readline");
- for Library_Options use ("-lreadline");
+ for Library_Options use ("-L@PREFIX@/lib", "-lreadline");
when "no" =>
for Source_Dirs use ("readline", "readline/no_readline");
end case;
@@ -26,7 +26,8 @@ project GnatColl_Readline is
package Linker is
-- When linking an executable
case Gnatcoll_Shared.Readline is
- when "yes" => for Linker_Options use ("-lreadline");
+ when "yes" => for Linker_Options use ("-L@PREFIX@/lib",
+ "-lreadline");
when "no" => null;
end case;
end Linker;

View File

@ -1,16 +0,0 @@
--- gnatlib/src/nopython/gnatcoll-scripts-python.adb.orig 2011-10-09 05:02:49.000000000 +0200
+++ gnatlib/src/nopython/gnatcoll-scripts-python.adb 2011-10-09 05:13:08.000000000 +0200
@@ -33,9 +33,11 @@
procedure Register_Python_Scripting
(Repo : Scripts.Scripts_Repository;
- Module : String)
+ Module : String;
+ Program_Name : String := "python";
+ Python_Home : String := "")
is
- pragma Unreferenced (Repo, Module);
+ pragma Unreferenced (Repo, Module, Program_Name, Python_Home);
begin
null;
end Register_Python_Scripting;

View File

@ -1,13 +0,0 @@
--- gnatlib/src/nopython/gnatcoll-scripts-python.ads.orig 2010-10-14 12:15:05.000000000 +0200
+++ gnatlib/src/nopython/gnatcoll-scripts-python.ads 2011-10-09 05:03:58.000000000 +0200
@@ -31,7 +31,9 @@
procedure Register_Python_Scripting
(Repo : Scripts.Scripts_Repository;
- Module : String);
+ Module : String;
+ Program_Name : String := "python";
+ Python_Home : String := "");
procedure Unregister_Python_Scripting
(Repo : Scripts.Scripts_Repository);
-- Does nothing, since python was not compiled in.

View File

@ -1,12 +0,0 @@
$NetBSD: patch-prj_editor_src_gpr__creation.adb,v 1.1 2012/07/08 20:23:50 marino Exp $
--- prj_editor/src/gpr_creation.adb.orig 2010-03-30 08:12:23.000000000 +0000
+++ prj_editor/src/gpr_creation.adb
@@ -571,6 +571,7 @@ package body GPR_Creation is
Current_Project : Integer;
All_Source_Dirs : Boolean := False)
is
+ pragma Unreferenced (Root_Project);
Current_Dir : Natural;
Tmp : Import_Project_Error;
begin

View File

@ -1,12 +0,0 @@
$NetBSD: patch-refactoring_core_src_refactoring-services.adb,v 1.1 2012/07/08 20:23:50 marino Exp $
--- refactoring/core/src/refactoring-services.adb.orig 2010-10-01 14:01:51.000000000 +0000
+++ refactoring/core/src/refactoring-services.adb
@@ -1318,6 +1318,7 @@ package body Refactoring.Services is
Direction : Integer := 1) return Editor_Location'Class
is
Loc : Editor_Location'Class := From;
+ pragma Unreferenced (Direction);
Seen_Comment : Boolean := False;
begin
loop

View File

@ -1,11 +0,0 @@
--- shared.gpr.orig 2010-12-04 06:47:54 +0000
+++ shared.gpr
@@ -35,7 +35,7 @@ project Shared is
"-gnatwaCJe", "-gnat05");
for Default_Switches ("C") use
- ("-g", "-O1", "-fdump-xref") & GnatColl_Shared.Gtk_Include;
+ ("-g", "-O1") & GnatColl_Shared.Gtk_Include;
when "Production" =>
for Default_Switches ("Ada") use

View File

@ -1,22 +0,0 @@
$NetBSD: patch-toolchains_editor_core_src_toolchains-parsers.ads,v 1.1 2012/07/08 20:23:50 marino Exp $
--- toolchains_editor/core/src/toolchains-parsers.ads.orig 2010-09-21 08:15:41.000000000 +0000
+++ toolchains_editor/core/src/toolchains-parsers.ads
@@ -73,7 +73,7 @@ package Toolchains.Parsers is
type Parsed_Project_Record is private;
type Parsed_Project is access all Parsed_Project_Record;
- type Project_Parser_Record is private;
+ type Project_Parser_Record is limited private;
type Project_Parser is access all Project_Parser_Record;
--------------------
@@ -184,7 +184,7 @@ private
package Parsed_Projects_Maps is new Ada.Containers.Ordered_Maps
(Project_Node_Id, Parsed_Project);
- type Project_Parser_Record is record
+ type Project_Parser_Record is limited record
Manager : Toolchain_Manager;
Tree_Data : Project_Tree_Ref;

View File

@ -17,4 +17,4 @@ Features Tools
* Project Explorer
* Project Wizard
WWW: http://www.adacore.com/home/products/gnatpro/toolsuite/gps/
WWW: http://www.adacore.com/gnatpro/toolsuite/gps/

View File

@ -1,961 +0,0 @@
bin/gps
%%DATADIR%%/activity_log.tmplt
%%DATADIR%%/aunit/harness.adb.tmpl
%%DATADIR%%/aunit/test_case.adb.tmpl
%%DATADIR%%/aunit/test_case.ads.tmpl
%%DATADIR%%/aunit/test_suite.adb.tmpl
%%DATADIR%%/aunit/test_suite.ads.tmpl
%%DATADIR%%/default.gpr
%%DATADIR%%/docgen2/custom/tags.css
%%DATADIR%%/docgen2/entities.tmpl
%%DATADIR%%/docgen2/html.tmpl
%%DATADIR%%/docgen2/index_entry.tmpl
%%DATADIR%%/docgen2/multilink.tmpl
%%DATADIR%%/docgen2/navbutton.tmpl
%%DATADIR%%/docgen2/navigation.tmpl
%%DATADIR%%/docgen2/src.tmpl
%%DATADIR%%/docgen2/support/docgen.css
%%DATADIR%%/docgen2/support/docgen.js
%%DATADIR%%/docgen2/support/images/arrow_close.png
%%DATADIR%%/docgen2/support/images/arrow_open.png
%%DATADIR%%/docgen2/support/images/generic-spec.png
%%DATADIR%%/docgen2/support/images/link.png
%%DATADIR%%/docgen2/support/images/menubar.png
%%DATADIR%%/docgen2/support/images/menubarbottom.png
%%DATADIR%%/docgen2/support/images/nav1_btn_mo.png
%%DATADIR%%/docgen2/support/images/nav1_btn_up.png
%%DATADIR%%/docgen2/support/images/nav2_btn_mo.png
%%DATADIR%%/docgen2/support/images/nav2_btn_up.png
%%DATADIR%%/docgen2/support/images/package-spec.png
%%DATADIR%%/docgen2/support/images/rightside.png
%%DATADIR%%/docgen2/support/images/rightsidebottom.png
%%DATADIR%%/docgen2/support/images/sidebarframe.png
%%DATADIR%%/docgen2/support/images/sidebarframebottom.png
%%DATADIR%%/docgen2/support/images/subprogram-spec.png
%%DATADIR%%/docgen2/support/images/tree_item.png
%%DATADIR%%/docgen2/support/images/tree_root.png
%%DATADIR%%/docgen2/support/images/treechildren_bg.png
%%DATADIR%%/docgen2/support/images/treechildren_bg_bottom.png
%%DATADIR%%/docgen2/support/images/type-spec.png
%%DATADIR%%/docgen2/support/images/variable-spec.png
%%DATADIR%%/docgen2/tree.tmpl
%%DATADIR%%/docgen2/tree_elem.tmpl
%%DATADIR%%/docgen2/userdef.tmpl
%%DATADIR%%/gps-animation.gif
%%DATADIR%%/gps-animation.png
%%DATADIR%%/gps-splash.png
%%DATADIR%%/icons/16px/box.png
%%DATADIR%%/icons/16px/build_all_16.png
%%DATADIR%%/icons/16px/build_main_16.png
%%DATADIR%%/icons/16px/cleanup_16.png
%%DATADIR%%/icons/16px/clipboard_16.png
%%DATADIR%%/icons/16px/compile_16.png
%%DATADIR%%/icons/16px/compute_xref_16.png
%%DATADIR%%/icons/16px/copy_16.png
%%DATADIR%%/icons/16px/custom_build_16.png
%%DATADIR%%/icons/16px/cut_16.png
%%DATADIR%%/icons/16px/debug_break.png
%%DATADIR%%/icons/16px/debug_indicator.png
%%DATADIR%%/icons/16px/entities/circle.png
%%DATADIR%%/icons/16px/entities/circle_p.png
%%DATADIR%%/icons/16px/entities/circle_ps.png
%%DATADIR%%/icons/16px/entities/circle_s.png
%%DATADIR%%/icons/16px/entities/circle_x.png
%%DATADIR%%/icons/16px/entities/circle_xs.png
%%DATADIR%%/icons/16px/entities/diamond.png
%%DATADIR%%/icons/16px/entities/diamond_p.png
%%DATADIR%%/icons/16px/entities/diamond_ps.png
%%DATADIR%%/icons/16px/entities/diamond_s.png
%%DATADIR%%/icons/16px/entities/diamond_x.png
%%DATADIR%%/icons/16px/entities/diamond_xs.png
%%DATADIR%%/icons/16px/entities/dot.png
%%DATADIR%%/icons/16px/entities/dot_p.png
%%DATADIR%%/icons/16px/entities/dot_ps.png
%%DATADIR%%/icons/16px/entities/dot_s.png
%%DATADIR%%/icons/16px/entities/dot_x.png
%%DATADIR%%/icons/16px/entities/dot_xs.png
%%DATADIR%%/icons/16px/entities/square.png
%%DATADIR%%/icons/16px/entities/square_p.png
%%DATADIR%%/icons/16px/entities/square_ps.png
%%DATADIR%%/icons/16px/entities/square_s.png
%%DATADIR%%/icons/16px/entities/square_x.png
%%DATADIR%%/icons/16px/entities/square_xs.png
%%DATADIR%%/icons/16px/entities/triangle.png
%%DATADIR%%/icons/16px/entities/triangle_p.png
%%DATADIR%%/icons/16px/entities/triangle_ps.png
%%DATADIR%%/icons/16px/entities/triangle_s.png
%%DATADIR%%/icons/16px/entities/triangle_x.png
%%DATADIR%%/icons/16px/entities/triangle_xs.png
%%DATADIR%%/icons/16px/error.png
%%DATADIR%%/icons/16px/file.png
%%DATADIR%%/icons/16px/file_altered.png
%%DATADIR%%/icons/16px/file_error.png
%%DATADIR%%/icons/16px/file_pencil.png
%%DATADIR%%/icons/16px/file_warning.png
%%DATADIR%%/icons/16px/finish_16.png
%%DATADIR%%/icons/16px/folder_closed.png
%%DATADIR%%/icons/16px/folder_e_closed.png
%%DATADIR%%/icons/16px/folder_e_open.png
%%DATADIR%%/icons/16px/folder_o_closed.png
%%DATADIR%%/icons/16px/folder_o_open.png
%%DATADIR%%/icons/16px/folder_open.png
%%DATADIR%%/icons/16px/goto_next_16.png
%%DATADIR%%/icons/16px/goto_previous_16.png
%%DATADIR%%/icons/16px/gps_16.png
%%DATADIR%%/icons/16px/newfile_16.png
%%DATADIR%%/icons/16px/newfile_b_16.png
%%DATADIR%%/icons/16px/next_16.png
%%DATADIR%%/icons/16px/open_16.png
%%DATADIR%%/icons/16px/play_16.png
%%DATADIR%%/icons/16px/project_box.png
%%DATADIR%%/icons/16px/project_box_altered.png
%%DATADIR%%/icons/16px/project_box_error.png
%%DATADIR%%/icons/16px/project_box_open.png
%%DATADIR%%/icons/16px/project_box_open_altered.png
%%DATADIR%%/icons/16px/project_box_pencil.png
%%DATADIR%%/icons/16px/project_box_warning.png
%%DATADIR%%/icons/16px/redo_16.png
%%DATADIR%%/icons/16px/save_16.png
%%DATADIR%%/icons/16px/semantic_check_16.png
%%DATADIR%%/icons/16px/stack_down_16.png
%%DATADIR%%/icons/16px/stack_up_16.png
%%DATADIR%%/icons/16px/step_16.png
%%DATADIR%%/icons/16px/stop_16.png
%%DATADIR%%/icons/16px/sync_to_local.png
%%DATADIR%%/icons/16px/sync_to_remote.png
%%DATADIR%%/icons/16px/syntax_check_16.png
%%DATADIR%%/icons/16px/undo_16.png
%%DATADIR%%/icons/16px/warning.png
%%DATADIR%%/icons/18px/build_all_18.png
%%DATADIR%%/icons/18px/build_main_18.png
%%DATADIR%%/icons/18px/cleanup_18.png
%%DATADIR%%/icons/18px/clipboard_18.png
%%DATADIR%%/icons/18px/compile_18.png
%%DATADIR%%/icons/18px/compute_xref_18.png
%%DATADIR%%/icons/18px/copy_18.png
%%DATADIR%%/icons/18px/custom_build_18.png
%%DATADIR%%/icons/18px/cut_18.png
%%DATADIR%%/icons/18px/finish_18.png
%%DATADIR%%/icons/18px/goto_next_18.png
%%DATADIR%%/icons/18px/goto_previous_18.png
%%DATADIR%%/icons/18px/newfile_18.png
%%DATADIR%%/icons/18px/next_18.png
%%DATADIR%%/icons/18px/open_18.png
%%DATADIR%%/icons/18px/play_18.png
%%DATADIR%%/icons/18px/redo_18.png
%%DATADIR%%/icons/18px/save_18.png
%%DATADIR%%/icons/18px/semantic_check_18.png
%%DATADIR%%/icons/18px/stack_down_18.png
%%DATADIR%%/icons/18px/stack_up_18.png
%%DATADIR%%/icons/18px/step_18.png
%%DATADIR%%/icons/18px/stop_18.png
%%DATADIR%%/icons/18px/syntax_check_18.png
%%DATADIR%%/icons/18px/undo_18.png
%%DATADIR%%/icons/20px/vcs-added.png
%%DATADIR%%/icons/20px/vcs-has-conflicts.png
%%DATADIR%%/icons/20px/vcs-modified.png
%%DATADIR%%/icons/20px/vcs-needs-merge.png
%%DATADIR%%/icons/20px/vcs-needs-update.png
%%DATADIR%%/icons/20px/vcs-not-registered.png
%%DATADIR%%/icons/20px/vcs-removed.png
%%DATADIR%%/icons/20px/vcs-unknown.png
%%DATADIR%%/icons/20px/vcs-up-to-date.png
%%DATADIR%%/icons/24px/build_all_24.png
%%DATADIR%%/icons/24px/build_main_24.png
%%DATADIR%%/icons/24px/cleanup_24.png
%%DATADIR%%/icons/24px/clipboard_24.png
%%DATADIR%%/icons/24px/compile_24.png
%%DATADIR%%/icons/24px/compute_xref_24.png
%%DATADIR%%/icons/24px/copy_24.png
%%DATADIR%%/icons/24px/custom_build_24.png
%%DATADIR%%/icons/24px/cut_24.png
%%DATADIR%%/icons/24px/finish_24.png
%%DATADIR%%/icons/24px/goto_next_24.png
%%DATADIR%%/icons/24px/goto_previous_24.png
%%DATADIR%%/icons/24px/newfile_24.png
%%DATADIR%%/icons/24px/next_24.png
%%DATADIR%%/icons/24px/open_24.png
%%DATADIR%%/icons/24px/play_24.png
%%DATADIR%%/icons/24px/redo_24.png
%%DATADIR%%/icons/24px/save_24.png
%%DATADIR%%/icons/24px/semantic_check_24.png
%%DATADIR%%/icons/24px/stack_down_24.png
%%DATADIR%%/icons/24px/stack_up_24.png
%%DATADIR%%/icons/24px/step_24.png
%%DATADIR%%/icons/24px/stop_24.png
%%DATADIR%%/icons/24px/syntax_check_24.png
%%DATADIR%%/icons/24px/undo_24.png
%%DATADIR%%/icons/32px/gps_32.png
%%DATADIR%%/icons/48px/gps_48.png
%%DATADIR%%/icons/9px/build_error.png
%%DATADIR%%/icons/9px/build_error_fixable.png
%%DATADIR%%/icons/9px/build_style.png
%%DATADIR%%/icons/9px/build_style_fixable.png
%%DATADIR%%/icons/9px/build_warning.png
%%DATADIR%%/icons/9px/build_warning_fixable.png
%%DATADIR%%/icons/9px/executed_code.png
%%DATADIR%%/icons/9px/line_has_code.png
%%DATADIR%%/icons/9px/line_might_have_code.png
%%DATADIR%%/icons/9px/non_executed_code.png
%%DATADIR%%/icons/9px/partially_covered_code.png
%%DATADIR%%/icons/9px/wrench.png
%%DATADIR%%/icons/9px/wrench_multi.png
%%DATADIR%%/icons/other/adacore_logo.png
%%DATADIR%%/icons/other/button_guide.png
%%DATADIR%%/icons/other/button_guide_over.png
%%DATADIR%%/icons/other/button_overview.png
%%DATADIR%%/icons/other/button_overview_over.png
%%DATADIR%%/icons/other/button_tutorial.png
%%DATADIR%%/icons/other/button_tutorial_over.png
%%DATADIR%%/icons/other/get_started.png
%%DATADIR%%/icons/other/welcome_header.png
%%DATADIR%%/library/GPS_old.py
%%DATADIR%%/library/addr2line.py
%%DATADIR%%/library/auto_changelog.py
%%DATADIR%%/library/autoformat.py
%%DATADIR%%/library/autognatpp.py
%%DATADIR%%/library/copy_paste.py
%%DATADIR%%/library/copy_paste_toolbar.py
%%DATADIR%%/library/create_missing_dirs.py
%%DATADIR%%/library/createfile.py
%%DATADIR%%/library/debugger.py
%%DATADIR%%/library/dependencies.py
%%DATADIR%%/library/eclipse.py
%%DATADIR%%/library/emacs.xml
%%DATADIR%%/library/enter.xml
%%DATADIR%%/library/execute_extended.py
%%DATADIR%%/library/filedeps.py
%%DATADIR%%/library/filepos.py
%%DATADIR%%/library/first_subtype.py
%%DATADIR%%/library/gnatpp_switches.py
%%DATADIR%%/library/gnatr.xml
%%DATADIR%%/library/highlight_selection.py
%%DATADIR%%/library/isearch.py
%%DATADIR%%/library/ispell.py
%%DATADIR%%/library/local_history.py
%%DATADIR%%/library/occurrences.py
%%DATADIR%%/library/online_support.py
%%DATADIR%%/library/open_file.py
%%DATADIR%%/library/ppc.xml
%%DATADIR%%/library/pygps/__init__.py
%%DATADIR%%/library/pygps/notebook.py
%%DATADIR%%/library/pygps/project.py
%%DATADIR%%/library/pygps/tree.py
%%DATADIR%%/library/save_on_compile.py
%%DATADIR%%/library/separate.py
%%DATADIR%%/library/simple_project.py
%%DATADIR%%/library/skeleton.py
%%DATADIR%%/library/unicode.py
%%DATADIR%%/library/unused_entities.py
%%DATADIR%%/library/vi.py
%%DATADIR%%/perspectives.xml
%%DATADIR%%/plug-ins/Makefile.py
%%DATADIR%%/plug-ins/ada-support.xml
%%DATADIR%%/plug-ins/ada_support.py
%%DATADIR%%/plug-ins/align.py
%%DATADIR%%/plug-ins/auto_highlight_occurrences.py
%%DATADIR%%/plug-ins/block_completion.py
%%DATADIR%%/plug-ins/build_modes.xml
%%DATADIR%%/plug-ins/build_targets.xml
%%DATADIR%%/plug-ins/c_support.xml
%%DATADIR%%/plug-ins/changelog.xml
%%DATADIR%%/plug-ins/childtree.png
%%DATADIR%%/plug-ins/childtree2.png
%%DATADIR%%/plug-ins/clearcase.xml
%%DATADIR%%/plug-ins/codepeer.py
%%DATADIR%%/plug-ins/csharp.xml
%%DATADIR%%/plug-ins/cvs.xml
%%DATADIR%%/plug-ins/dispatching.py
%%DATADIR%%/plug-ins/docgen_base_tags.py
%%DATADIR%%/plug-ins/editors.py
%%DATADIR%%/plug-ins/expanded_code.py
%%DATADIR%%/plug-ins/gcov.py
%%DATADIR%%/plug-ins/git.xml
%%DATADIR%%/plug-ins/git_support.py
%%DATADIR%%/plug-ins/gnat_switches.py
%%DATADIR%%/plug-ins/gnatcheck.py
%%DATADIR%%/plug-ins/gnatdist_support.py
%%DATADIR%%/plug-ins/gnatmetric.xml
%%DATADIR%%/plug-ins/gnatpp.xml
%%DATADIR%%/plug-ins/gnatpsta.py
%%DATADIR%%/plug-ins/gnatstack.py
%%DATADIR%%/plug-ins/gnatstub.xml
%%DATADIR%%/plug-ins/gpr.xml
%%DATADIR%%/plug-ins/gps_utils/__init__.py
%%DATADIR%%/plug-ins/gps_utils/console_process.py
%%DATADIR%%/plug-ins/gps_utils/gnat_rules.py
%%DATADIR%%/plug-ins/gps_utils/gnatcheck_default.py
%%DATADIR%%/plug-ins/gps_utils/gnatcheck_rules_editor.py
%%DATADIR%%/plug-ins/gps_utils/highlighter.py
%%DATADIR%%/plug-ins/gps_utils/switches.py
%%DATADIR%%/plug-ins/icons.xml
%%DATADIR%%/plug-ins/images/tip_all_occurrences.png
%%DATADIR%%/plug-ins/images/tip_build_menu.png
%%DATADIR%%/plug-ins/images/tip_entity_view.png
%%DATADIR%%/plug-ins/images/tip_entity_view_dnd.png
%%DATADIR%%/plug-ins/images/tip_insert_spaces_with_tab.png
%%DATADIR%%/plug-ins/images/tip_jump_to_first_location.png
%%DATADIR%%/plug-ins/images/tip_keyboard_macro.png
%%DATADIR%%/plug-ins/images/tip_makefile_support.png
%%DATADIR%%/plug-ins/images/tip_multi_language_builder.png
%%DATADIR%%/plug-ins/images/tip_multiple_views.png
%%DATADIR%%/plug-ins/images/tip_notebook_tabs_position.png
%%DATADIR%%/plug-ins/images/tip_os_shell.png
%%DATADIR%%/plug-ins/images/tip_task_manager.png
%%DATADIR%%/plug-ins/languages.xml
%%DATADIR%%/plug-ins/listvars.py
%%DATADIR%%/plug-ins/locations_view_utils.py
%%DATADIR%%/plug-ins/methods.py
%%DATADIR%%/plug-ins/navigation_utils.py
%%DATADIR%%/plug-ins/os_utils.py
%%DATADIR%%/plug-ins/pipe.py
%%DATADIR%%/plug-ins/projects.xml
%%DATADIR%%/plug-ins/protocols.xml
%%DATADIR%%/plug-ins/python_doc.py
%%DATADIR%%/plug-ins/python_support.py
%%DATADIR%%/plug-ins/rectangles.py
%%DATADIR%%/plug-ins/reset_gps_registry.py
%%DATADIR%%/plug-ins/runtime.xml
%%DATADIR%%/plug-ins/shell.py
%%DATADIR%%/plug-ins/sort_selection.py
%%DATADIR%%/plug-ins/spark/spark.py
%%DATADIR%%/plug-ins/spark_support.py
%%DATADIR%%/plug-ins/subversion.xml
%%DATADIR%%/plug-ins/text_utils.py
%%DATADIR%%/plug-ins/tip_of_the_day.py
%%DATADIR%%/plug-ins/toolchains.xml
%%DATADIR%%/plug-ins/url.py
%%DATADIR%%/plug-ins/xcov.py
%%DATADIR%%/plug-ins/xml_support.py
%%DATADIR%%/plug-ins/zoom.py
%%DATADIR%%/predefined_ada.xml
%%DATADIR%%/readonly.gpr
%%DATADIR%%/shell_commands.xml
%%DATADIR%%/templates/ajis_hello/@_project_name_@.gpr
%%DATADIR%%/templates/ajis_hello/Makefile
%%DATADIR%%/templates/ajis_hello/ajis_hello.gpt
%%DATADIR%%/templates/ajis_hello/src_ada/hello.adb
%%DATADIR%%/templates/ajis_hello/src_ada/hello.ads
%%DATADIR%%/templates/ajis_hello/src_java/com/adacore/example/@_Main_Name_@.java
%%DATADIR%%/templates/aws_simple_web_server/@_project_name_@.gpr
%%DATADIR%%/templates/aws_simple_web_server/simple_web_server.gpt
%%DATADIR%%/templates/aws_simple_web_server/src/@_project_name_@-callbacks.adb
%%DATADIR%%/templates/aws_simple_web_server/src/@_project_name_@-callbacks.ads
%%DATADIR%%/templates/aws_simple_web_server/src/@_project_name_@-main.adb
%%DATADIR%%/templates/aws_simple_web_server/src/@_project_name_@.ads
%%DATADIR%%/templates/aws_web_server/@_project_name_@.gpr
%%DATADIR%%/templates/aws_web_server/css/style.css
%%DATADIR%%/templates/aws_web_server/img/gps_logo.png
%%DATADIR%%/templates/aws_web_server/src/@_project_name_@-dispatchers.adb
%%DATADIR%%/templates/aws_web_server/src/@_project_name_@-dispatchers.ads
%%DATADIR%%/templates/aws_web_server/src/@_project_name_@-main.adb
%%DATADIR%%/templates/aws_web_server/src/@_project_name_@.ads
%%DATADIR%%/templates/aws_web_server/tmplt/main.thtml
%%DATADIR%%/templates/aws_web_server/web_server.gpt
%%DATADIR%%/templates/aws_web_server_blocks/@_project_name_@.gpr
%%DATADIR%%/templates/aws_web_server_blocks/README
%%DATADIR%%/templates/aws_web_server_blocks/css/style.css
%%DATADIR%%/templates/aws_web_server_blocks/gen/templates.tada
%%DATADIR%%/templates/aws_web_server_blocks/img/gps_logo.png
%%DATADIR%%/templates/aws_web_server_blocks/js/ajax_api.tjs
%%DATADIR%%/templates/aws_web_server_blocks/js/aws.tjs
%%DATADIR%%/templates/aws_web_server_blocks/js/aws_kernel.tjs
%%DATADIR%%/templates/aws_web_server_blocks/js/behaviour.js
%%DATADIR%%/templates/aws_web_server_blocks/js/prototype.js
%%DATADIR%%/templates/aws_web_server_blocks/js/scriptaculous.js
%%DATADIR%%/templates/aws_web_server_blocks/makefile
%%DATADIR%%/templates/aws_web_server_blocks/open_readme.py
%%DATADIR%%/templates/aws_web_server_blocks/src/@_project_name_@-ajax.adb
%%DATADIR%%/templates/aws_web_server_blocks/src/@_project_name_@-ajax.ads
%%DATADIR%%/templates/aws_web_server_blocks/src/@_project_name_@-dispatchers.adb
%%DATADIR%%/templates/aws_web_server_blocks/src/@_project_name_@-dispatchers.ads
%%DATADIR%%/templates/aws_web_server_blocks/src/@_project_name_@-main.adb
%%DATADIR%%/templates/aws_web_server_blocks/src/@_project_name_@-web_blocks.adb
%%DATADIR%%/templates/aws_web_server_blocks/src/@_project_name_@-web_blocks.ads
%%DATADIR%%/templates/aws_web_server_blocks/src/@_project_name_@.ads
%%DATADIR%%/templates/aws_web_server_blocks/tmplt/main.thtml
%%DATADIR%%/templates/aws_web_server_blocks/tmplt/r_widget_counter.txml
%%DATADIR%%/templates/aws_web_server_blocks/tmplt/widget_counter.thtml
%%DATADIR%%/templates/aws_web_server_blocks/web_server_blocks.gpt
%%DATADIR%%/templates/gtkada_minimal/@_project_name_@.gpr
%%DATADIR%%/templates/gtkada_minimal/gtkada_minimal.gpt
%%DATADIR%%/templates/gtkada_minimal/src/@_main_name_@.adb
%%DATADIR%%/templates/simple_project/@_project_name_@.gpr
%%DATADIR%%/templates/simple_project/simple_project.gpt
%%DATADIR%%/templates/simple_project/src/@_main_name_@.adb
%%DOCSDIR%%/html/Adding-New-Help-Files.html
%%DOCSDIR%%/html/Adding-casing-exceptions.html
%%DOCSDIR%%/html/Adding-contextual-menus.html
%%DOCSDIR%%/html/Adding-documentation.html
%%DOCSDIR%%/html/Adding-new-menus.html
%%DOCSDIR%%/html/Adding-project-templates.html
%%DOCSDIR%%/html/Adding-stock-icons.html
%%DOCSDIR%%/html/Adding-support-for-new-Version-Control-Systems.html
%%DOCSDIR%%/html/Adding-support-for-new-languages.html
%%DOCSDIR%%/html/Adding-support-for-new-tools.html
%%DOCSDIR%%/html/Adding-tool-bar-buttons.html
%%DOCSDIR%%/html/Annotate.html
%%DOCSDIR%%/html/Associating-actions-to-operations.html
%%DOCSDIR%%/html/Automatically-loading-python-files-at-startup.html
%%DOCSDIR%%/html/Binding-actions-to-keys.html
%%DOCSDIR%%/html/Bookmarks.html
%%DOCSDIR%%/html/Call-Graph.html
%%DOCSDIR%%/html/Chaining-commands.html
%%DOCSDIR%%/html/Closing-Windows.html
%%DOCSDIR%%/html/Code-Coverage.html
%%DOCSDIR%%/html/Code-Fixing.html
%%DOCSDIR%%/html/Coding-Standard.html
%%DOCSDIR%%/html/Command-Line-Options.html
%%DOCSDIR%%/html/Commit.html
%%DOCSDIR%%/html/Compare-against-head.html
%%DOCSDIR%%/html/Compare-against-revision.html
%%DOCSDIR%%/html/Compare-against-working.html
%%DOCSDIR%%/html/Compare-base-against-head.html
%%DOCSDIR%%/html/Compare-base-against-tag_002fbranch.html
%%DOCSDIR%%/html/Compilation_002fBuild.html
%%DOCSDIR%%/html/Complete-Identifier.html
%%DOCSDIR%%/html/Configuring-rsync-usage.html
%%DOCSDIR%%/html/Connection-settings.html
%%DOCSDIR%%/html/Contextual-Menus-for-Editing-Files.html
%%DOCSDIR%%/html/Contextual-Menus-for-Source-Navigation.html
%%DOCSDIR%%/html/Contextual-menus-on-object-directories-only.html
%%DOCSDIR%%/html/Coverage-Analysis-Preferences.html
%%DOCSDIR%%/html/Coverage-Report.html
%%DOCSDIR%%/html/Creating-custom-graphical-interfaces.html
%%DOCSDIR%%/html/Creating-themes.html
%%DOCSDIR%%/html/Custom-VCS-interfaces.html
%%DOCSDIR%%/html/Customization-examples.html
%%DOCSDIR%%/html/Customization-files-and-plugins.html
%%DOCSDIR%%/html/Customizing-and-Extending-GPS.html
%%DOCSDIR%%/html/Customizing-build-Targets-and-Models.html
%%DOCSDIR%%/html/Customizing-the-Debugger.html
%%DOCSDIR%%/html/Customizing-through-XML-and-Python-files.html
%%DOCSDIR%%/html/Customizing-your-Projects.html
%%DOCSDIR%%/html/Debugger-Issues.html
%%DOCSDIR%%/html/Debugging.html
%%DOCSDIR%%/html/Defining-Actions.html
%%DOCSDIR%%/html/Defining-a-remote-connection-tool.html
%%DOCSDIR%%/html/Defining-a-remote-path-translation.html
%%DOCSDIR%%/html/Defining-a-remote-server.html
%%DOCSDIR%%/html/Defining-a-shell.html
%%DOCSDIR%%/html/Defining-default-command-line.html
%%DOCSDIR%%/html/Defining-new-Modes.html
%%DOCSDIR%%/html/Defining-new-Target-Models.html
%%DOCSDIR%%/html/Defining-new-Targets.html
%%DOCSDIR%%/html/Defining-new-search-patterns.html
%%DOCSDIR%%/html/Defining-project-attributes.html
%%DOCSDIR%%/html/Defining-revision-information.html
%%DOCSDIR%%/html/Defining-status.html
%%DOCSDIR%%/html/Defining-supported-languages.html
%%DOCSDIR%%/html/Defining-text-aliases.html
%%DOCSDIR%%/html/Defining-tool-switches.html
%%DOCSDIR%%/html/Dependency-Browser.html
%%DOCSDIR%%/html/Describing-a-VCS.html
%%DOCSDIR%%/html/Description-of-the-Main-Windows.html
%%DOCSDIR%%/html/Description-of-the-Projects.html
%%DOCSDIR%%/html/Disabling-Project-Edition-Features.html
%%DOCSDIR%%/html/Documentation-Generation.html
%%DOCSDIR%%/html/Documention-Preferences.html
%%DOCSDIR%%/html/Editing-Files.html
%%DOCSDIR%%/html/Editing-Sources.html
%%DOCSDIR%%/html/Entity-Browser.html
%%DOCSDIR%%/html/Environment-Variables.html
%%DOCSDIR%%/html/Environment.html
%%DOCSDIR%%/html/Executing-external-tools.html
%%DOCSDIR%%/html/Extending-Projects.html
%%DOCSDIR%%/html/Extract-Subprogram.html
%%DOCSDIR%%/html/File-Switches.html
%%DOCSDIR%%/html/Files.html
%%DOCSDIR%%/html/Filtering-actions.html
%%DOCSDIR%%/html/Find-All-References.html
%%DOCSDIR%%/html/Floating-Windows.html
%%DOCSDIR%%/html/GNU-Free-Documentation-License.html
%%DOCSDIR%%/html/GPS-Themes.html
%%DOCSDIR%%/html/General-Information.html
%%DOCSDIR%%/html/General-Issues.html
%%DOCSDIR%%/html/Handling-of-case-exceptions.html
%%DOCSDIR%%/html/Hello-World_0021-in-python.html
%%DOCSDIR%%/html/Hiding-contextual-menus.html
%%DOCSDIR%%/html/Highlighting-dispatching-calls.html
%%DOCSDIR%%/html/Hooks.html
%%DOCSDIR%%/html/Implementing-VCS-actions.html
%%DOCSDIR%%/html/Index-table.html
%%DOCSDIR%%/html/Interactive-Search.html
%%DOCSDIR%%/html/Introduction.html
%%DOCSDIR%%/html/Limitations.html
%%DOCSDIR%%/html/Loading-a-remote-project.html
%%DOCSDIR%%/html/Macro-arguments.html
%%DOCSDIR%%/html/Menu-Items.html
%%DOCSDIR%%/html/Menu-example.html
%%DOCSDIR%%/html/Metrics.html
%%DOCSDIR%%/html/Moving-Windows.html
%%DOCSDIR%%/html/Multiple-Document-Interface.html
%%DOCSDIR%%/html/Name-Parameters.html
%%DOCSDIR%%/html/Navigating-with-hyperlinks.html
%%DOCSDIR%%/html/Online-Help.html
%%DOCSDIR%%/html/Open-From-Host.html
%%DOCSDIR%%/html/Open-From-Project.html
%%DOCSDIR%%/html/Open.html
%%DOCSDIR%%/html/Outline-Preferences.html
%%DOCSDIR%%/html/Output-parsers.html
%%DOCSDIR%%/html/Paths-settings.html
%%DOCSDIR%%/html/Perspectives.html
%%DOCSDIR%%/html/Preferences-support-in-custom-files.html
%%DOCSDIR%%/html/Print-Command.html
%%DOCSDIR%%/html/Printing-the-GPS-Python-documentation.html
%%DOCSDIR%%/html/Processing-the-tool-output.html
%%DOCSDIR%%/html/Project-Handling.html
%%DOCSDIR%%/html/Project-View.html
%%DOCSDIR%%/html/Python-FAQ.html
%%DOCSDIR%%/html/Querying-project-switches.html
%%DOCSDIR%%/html/Querying-switches-interactively.html
%%DOCSDIR%%/html/Recording-and-replaying-macros.html
%%DOCSDIR%%/html/Rectangles.html
%%DOCSDIR%%/html/Redirecting-the-command-output.html
%%DOCSDIR%%/html/Redirecting-the-output-of-spawned-processes.html
%%DOCSDIR%%/html/Redirecting-the-output-to-specific-windows.html
%%DOCSDIR%%/html/Refactoring.html
%%DOCSDIR%%/html/Reloading-a-python-file-in-GPS.html
%%DOCSDIR%%/html/Remote-Files.html
%%DOCSDIR%%/html/Remote-operations.html
%%DOCSDIR%%/html/Remote-programming-customization.html
%%DOCSDIR%%/html/Rename-Entity.html
%%DOCSDIR%%/html/Reporting-Suggestions-and-Bugs.html
%%DOCSDIR%%/html/Requirements.html
%%DOCSDIR%%/html/Running-GPS-on-Mac-OS-X.html
%%DOCSDIR%%/html/Saving-Files.html
%%DOCSDIR%%/html/Saving-open-windows.html
%%DOCSDIR%%/html/Scenarios-and-Configuration-Variables.html
%%DOCSDIR%%/html/Scripting-GPS.html
%%DOCSDIR%%/html/Scripts-and-GPS-actions.html
%%DOCSDIR%%/html/Scripts.html
%%DOCSDIR%%/html/Searching-and-Replacing.html
%%DOCSDIR%%/html/Selecting-Windows.html
%%DOCSDIR%%/html/Setup-a-remote-project.html
%%DOCSDIR%%/html/Setup-the-remote-servers.html
%%DOCSDIR%%/html/Smart-Completion.html
%%DOCSDIR%%/html/Solving-Problems.html
%%DOCSDIR%%/html/Source-Browsing.html
%%DOCSDIR%%/html/Source-Navigation.html
%%DOCSDIR%%/html/Spawning-external-processes.html
%%DOCSDIR%%/html/Splitting-Windows.html
%%DOCSDIR%%/html/Stack-Analysis.html
%%DOCSDIR%%/html/Subprogram-parameters.html
%%DOCSDIR%%/html/Support-for-Cross_002dReferences.html
%%DOCSDIR%%/html/Supported-Languages.html
%%DOCSDIR%%/html/Switches.html
%%DOCSDIR%%/html/The-Assembly-Window.html
%%DOCSDIR%%/html/The-Breakpoint-Editor.html
%%DOCSDIR%%/html/The-Build-Menu.html
%%DOCSDIR%%/html/The-Build-Mode.html
%%DOCSDIR%%/html/The-Call-Stack-Window.html
%%DOCSDIR%%/html/The-Callgraph-View.html
%%DOCSDIR%%/html/The-Clipboard-View.html
%%DOCSDIR%%/html/The-Data-Window.html
%%DOCSDIR%%/html/The-Debug-Menu.html
%%DOCSDIR%%/html/The-Debugger-Console.html
%%DOCSDIR%%/html/The-Edit-Menu.html
%%DOCSDIR%%/html/The-Entity-View.html
%%DOCSDIR%%/html/The-Execution-Window.html
%%DOCSDIR%%/html/The-File-Menu.html
%%DOCSDIR%%/html/The-File-Selector.html
%%DOCSDIR%%/html/The-File-View.html
%%DOCSDIR%%/html/The-GPS-Shell.html
%%DOCSDIR%%/html/The-Help-Menu.html
%%DOCSDIR%%/html/The-Key-Manager-Dialog.html
%%DOCSDIR%%/html/The-Locations-View.html
%%DOCSDIR%%/html/The-Memory-Window.html
%%DOCSDIR%%/html/The-Menu-Bar.html
%%DOCSDIR%%/html/The-Messages-Window.html
%%DOCSDIR%%/html/The-Navigate-Menu.html
%%DOCSDIR%%/html/The-Outline-View.html
%%DOCSDIR%%/html/The-Plug_002dins-Editor.html
%%DOCSDIR%%/html/The-Preferences-Dialog.html
%%DOCSDIR%%/html/The-Project-Browser.html
%%DOCSDIR%%/html/The-Project-Dependencies-Editor.html
%%DOCSDIR%%/html/The-Project-Menu.html
%%DOCSDIR%%/html/The-Project-Properties-Editor.html
%%DOCSDIR%%/html/The-Project-View.html
%%DOCSDIR%%/html/The-Project-Wizard.html
%%DOCSDIR%%/html/The-Python-Interpreter.html
%%DOCSDIR%%/html/The-Revision-View.html
%%DOCSDIR%%/html/The-Server-Mode.html
%%DOCSDIR%%/html/The-Shell-and-Python-Windows.html
%%DOCSDIR%%/html/The-Stack-Usage-Editor.html
%%DOCSDIR%%/html/The-Stack-Usage-Report.html
%%DOCSDIR%%/html/The-Status-Line.html
%%DOCSDIR%%/html/The-Switches-Editor.html
%%DOCSDIR%%/html/The-Target-Configuration-Dialog.html
%%DOCSDIR%%/html/The-Task-Manager.html
%%DOCSDIR%%/html/The-Tip-of-the-Day.html
%%DOCSDIR%%/html/The-Tool-Bar.html
%%DOCSDIR%%/html/The-Tools-Menu.html
%%DOCSDIR%%/html/The-VCS-Activities.html
%%DOCSDIR%%/html/The-VCS-Explorer.html
%%DOCSDIR%%/html/The-VCS-Menu.html
%%DOCSDIR%%/html/The-VCS-node.html
%%DOCSDIR%%/html/The-Version-Control-Contextual-Menu.html
%%DOCSDIR%%/html/The-Welcome-Dialog.html
%%DOCSDIR%%/html/The-Window-View.html
%%DOCSDIR%%/html/The-Work-Space.html
%%DOCSDIR%%/html/The-remote-configuration-dialog.html
%%DOCSDIR%%/html/The-remote-view.html
%%DOCSDIR%%/html/Tool-example.html
%%DOCSDIR%%/html/Toolchains-customization.html
%%DOCSDIR%%/html/Tools.html
%%DOCSDIR%%/html/Update.html
%%DOCSDIR%%/html/Using-GPS-for-Remote-Development.html
%%DOCSDIR%%/html/Using-an-External-Editor.html
%%DOCSDIR%%/html/Using-the-Clipboard.html
%%DOCSDIR%%/html/Using-the-Source-Editor-when-Debugging.html
%%DOCSDIR%%/html/Version-Control-System.html
%%DOCSDIR%%/html/View-revision-history.html
%%DOCSDIR%%/html/Visual-Comparison.html
%%DOCSDIR%%/html/Working-in-a-Cross-Environment.html
%%DOCSDIR%%/html/Working-with-global-ChangeLog-file.html
%%DOCSDIR%%/html/Working-with-two-compilers.html
%%DOCSDIR%%/html/about.jpg
%%DOCSDIR%%/html/aliases.jpg
%%DOCSDIR%%/html/assembly.jpg
%%DOCSDIR%%/html/autosave-delay.html
%%DOCSDIR%%/html/bp-advanced.jpg
%%DOCSDIR%%/html/breakpoints.jpg
%%DOCSDIR%%/html/call-graph.jpg
%%DOCSDIR%%/html/call-stack.jpg
%%DOCSDIR%%/html/canvas.jpg
%%DOCSDIR%%/html/circle_x.png
%%DOCSDIR%%/html/colors.jpg
%%DOCSDIR%%/html/core-files.html
%%DOCSDIR%%/html/custom-editor-command.html
%%DOCSDIR%%/html/dependency-browser.jpg
%%DOCSDIR%%/html/diamond_x.png
%%DOCSDIR%%/html/docgen.jpg
%%DOCSDIR%%/html/dot_x.png
%%DOCSDIR%%/html/entity-browser.jpg
%%DOCSDIR%%/html/entity-view.jpg
%%DOCSDIR%%/html/explorer-scenario.jpg
%%DOCSDIR%%/html/file-view.jpg
%%DOCSDIR%%/html/gps-splash-academic.png
%%DOCSDIR%%/html/gps-splash-gpl.png
%%DOCSDIR%%/html/gps-splash.png
%%DOCSDIR%%/html/gps-tutorial.html
%%DOCSDIR%%/html/gps-vcs-added.jpg
%%DOCSDIR%%/html/gps-vcs-has-conflicts.jpg
%%DOCSDIR%%/html/gps-vcs-modified.jpg
%%DOCSDIR%%/html/gps-vcs-needs-merge.jpg
%%DOCSDIR%%/html/gps-vcs-needs-update.jpg
%%DOCSDIR%%/html/gps-vcs-not-registered.jpg
%%DOCSDIR%%/html/gps-vcs-removed.jpg
%%DOCSDIR%%/html/gps-vcs-unknown.jpg
%%DOCSDIR%%/html/gps-vcs-up-to-date.jpg
%%DOCSDIR%%/html/gps-welcome.html
%%DOCSDIR%%/html/gps.css
%%DOCSDIR%%/html/gps.html
%%DOCSDIR%%/html/gps_index.xml
%%DOCSDIR%%/html/gps_title.gif
%%DOCSDIR%%/html/help_index.html
%%DOCSDIR%%/html/index.html
%%DOCSDIR%%/html/key-shortcuts.jpg
%%DOCSDIR%%/html/locations-view.jpg
%%DOCSDIR%%/html/log-file.html
%%DOCSDIR%%/html/main-gps.jpg
%%DOCSDIR%%/html/memory-view.jpg
%%DOCSDIR%%/html/messages.jpg
%%DOCSDIR%%/html/naming-scheme.jpg
%%DOCSDIR%%/html/open-file.jpg
%%DOCSDIR%%/html/open-from-project.jpg
%%DOCSDIR%%/html/open-program-menu.html
%%DOCSDIR%%/html/outline-view.jpg
%%DOCSDIR%%/html/overview.png
%%DOCSDIR%%/html/preferences-dialog.html
%%DOCSDIR%%/html/preferences-general.jpg
%%DOCSDIR%%/html/project-browser.jpg
%%DOCSDIR%%/html/project-deps.jpg
%%DOCSDIR%%/html/project-modified.jpg
%%DOCSDIR%%/html/project-properties.jpg
%%DOCSDIR%%/html/project-view.jpg
%%DOCSDIR%%/html/project-wizard.jpg
%%DOCSDIR%%/html/remote-view-full.jpg
%%DOCSDIR%%/html/remote-view.jpg
%%DOCSDIR%%/html/report-of-analysis_flat.jpg
%%DOCSDIR%%/html/report-of-analysis_tree.jpg
%%DOCSDIR%%/html/revision-view.jpg
%%DOCSDIR%%/html/save-dialog.jpg
%%DOCSDIR%%/html/scenario-view.jpg
%%DOCSDIR%%/html/scenarios.jpg
%%DOCSDIR%%/html/search-hide.jpg
%%DOCSDIR%%/html/search-options.jpg
%%DOCSDIR%%/html/servers-configuration.jpg
%%DOCSDIR%%/html/shell-window.jpg
%%DOCSDIR%%/html/smart-completion.jpg
%%DOCSDIR%%/html/source-editor.jpg
%%DOCSDIR%%/html/square_x.png
%%DOCSDIR%%/html/stack-usage-editor.jpg
%%DOCSDIR%%/html/switch-editor-revert.jpg
%%DOCSDIR%%/html/switch-editor.jpg
%%DOCSDIR%%/html/target-configuration-dialog.jpg
%%DOCSDIR%%/html/task-manager.jpg
%%DOCSDIR%%/html/tasks.jpg
%%DOCSDIR%%/html/tip-of-the-day.jpg
%%DOCSDIR%%/html/toolchains-config.jpg
%%DOCSDIR%%/html/tooltips.jpg
%%DOCSDIR%%/html/triangle_x.png
%%DOCSDIR%%/html/tutorial.png
%%DOCSDIR%%/html/user_guide.png
%%DOCSDIR%%/html/vcs-activities.jpg
%%DOCSDIR%%/html/vcs-explorer.jpg
%%DOCSDIR%%/html/visual-diff.jpg
%%DOCSDIR%%/html/welcome.jpg
%%EXAMPLESDIR%%/demo/common/except.ads
%%EXAMPLESDIR%%/demo/common/input.adb
%%EXAMPLESDIR%%/demo/common/input.ads
%%EXAMPLESDIR%%/demo/common/screen_output.adb
%%EXAMPLESDIR%%/demo/common/screen_output.ads
%%EXAMPLESDIR%%/demo/common/sdc.adb
%%EXAMPLESDIR%%/demo/common/sdc.ads
%%EXAMPLESDIR%%/demo/common/stack.adb
%%EXAMPLESDIR%%/demo/common/stack.ads
%%EXAMPLESDIR%%/demo/demo.gpr
%%EXAMPLESDIR%%/demo/input.txt
%%EXAMPLESDIR%%/demo/matrix_handling/matrix.c
%%EXAMPLESDIR%%/demo/matrix_handling/matrix.h
%%EXAMPLESDIR%%/demo/matrix_handling/matrix_binding.adb
%%EXAMPLESDIR%%/demo/matrix_handling/matrix_binding.ads
%%EXAMPLESDIR%%/demo/matrix_handling/matrix_utils.c
%%EXAMPLESDIR%%/demo/projects/prj1.gpr
%%EXAMPLESDIR%%/demo/projects/prj1/src1.adb
%%EXAMPLESDIR%%/demo/projects/prj2.gpr
%%EXAMPLESDIR%%/demo/projects/prj2/src2.adb
%%EXAMPLESDIR%%/demo/projects/prj3.gpr
%%EXAMPLESDIR%%/demo/projects/prj3/src3.adb
%%EXAMPLESDIR%%/demo/projects/prj4.gpr
%%EXAMPLESDIR%%/demo/projects/prj4/src4.adb
%%EXAMPLESDIR%%/demo/struct/instructions.adb
%%EXAMPLESDIR%%/demo/struct/instructions.ads
%%EXAMPLESDIR%%/demo/struct/tokens.adb
%%EXAMPLESDIR%%/demo/struct/tokens.ads
%%EXAMPLESDIR%%/demo/struct/values-operations.adb
%%EXAMPLESDIR%%/demo/struct/values-operations.ads
%%EXAMPLESDIR%%/demo/struct/values.adb
%%EXAMPLESDIR%%/demo/struct/values.ads
%%EXAMPLESDIR%%/language/Makefile
%%EXAMPLESDIR%%/language/README
%%EXAMPLESDIR%%/language/gpr_custom.adb
%%EXAMPLESDIR%%/language/gpr_custom.ads
%%EXAMPLESDIR%%/language/gprcustom.c
%%EXAMPLESDIR%%/language/language_custom.ads
%%EXAMPLESDIR%%/language/language_custom.h
%%EXAMPLESDIR%%/python/README
%%EXAMPLESDIR%%/python/ada_expansion.py
%%EXAMPLESDIR%%/python/bookmarks.py
%%EXAMPLESDIR%%/python/build.py
%%EXAMPLESDIR%%/python/clipboards.py
%%EXAMPLESDIR%%/python/colors.py
%%EXAMPLESDIR%%/python/doc.py
%%EXAMPLESDIR%%/python/docgen_gtkada.py
%%EXAMPLESDIR%%/python/globals.py
%%EXAMPLESDIR%%/python/hello_gtk.py
%%EXAMPLESDIR%%/python/indent_all.py
%%EXAMPLESDIR%%/python/misc_text_utils.py
%%EXAMPLESDIR%%/python/prefs.py
%%EXAMPLESDIR%%/python/project_view.py
%%EXAMPLESDIR%%/python/readonly.py
%%EXAMPLESDIR%%/python/reformat_project.py
%%EXAMPLESDIR%%/python/remote_server_assign_variable.py
%%EXAMPLESDIR%%/remote/README
%%EXAMPLESDIR%%/remote/my_ssh
%%EXAMPLESDIR%%/remote/remote.gpr
%%EXAMPLESDIR%%/remote/src/demo1.adb
%%EXAMPLESDIR%%/remote/src/gen_list.adb
%%EXAMPLESDIR%%/remote/src/gen_list.ads
%%EXAMPLESDIR%%/remote/src/instr.adb
%%EXAMPLESDIR%%/remote/src/instr.ads
%%EXAMPLESDIR%%/tutorial/common/except.ads
%%EXAMPLESDIR%%/tutorial/common/input.adb
%%EXAMPLESDIR%%/tutorial/common/input.ads
%%EXAMPLESDIR%%/tutorial/common/screen_output.adb
%%EXAMPLESDIR%%/tutorial/common/screen_output.ads
%%EXAMPLESDIR%%/tutorial/common/sdc.adb
%%EXAMPLESDIR%%/tutorial/common/sdc.ads
%%EXAMPLESDIR%%/tutorial/common/stack.adb
%%EXAMPLESDIR%%/tutorial/common/stack.ads
%%EXAMPLESDIR%%/tutorial/input.txt
%%EXAMPLESDIR%%/tutorial/projects/prj1.gpr
%%EXAMPLESDIR%%/tutorial/projects/prj1/src1.adb
%%EXAMPLESDIR%%/tutorial/projects/prj2.gpr
%%EXAMPLESDIR%%/tutorial/projects/prj2/src2.adb
%%EXAMPLESDIR%%/tutorial/projects/prj3.gpr
%%EXAMPLESDIR%%/tutorial/projects/prj3/src3.adb
%%EXAMPLESDIR%%/tutorial/projects/prj4.gpr
%%EXAMPLESDIR%%/tutorial/projects/prj4/src4.adb
%%EXAMPLESDIR%%/tutorial/sdc.gpr
%%EXAMPLESDIR%%/tutorial/struct/instructions.adb
%%EXAMPLESDIR%%/tutorial/struct/instructions.ads
%%EXAMPLESDIR%%/tutorial/struct/tokens.adb
%%EXAMPLESDIR%%/tutorial/struct/tokens.ads
%%EXAMPLESDIR%%/tutorial/struct/values-operations.adb
%%EXAMPLESDIR%%/tutorial/struct/values-operations.ads
%%EXAMPLESDIR%%/tutorial/struct/values.adb
%%EXAMPLESDIR%%/tutorial/struct/values.ads
%%EXAMPLESDIR%%/xml/README
%%EXAMPLESDIR%%/xml/gnatmake.xml
%%PYSUPPORT%%/%%DATADIR%%/library/GPS_old.pyc
%%PYSUPPORT%%/%%DATADIR%%/library/addr2line.pyc
%%PYSUPPORT%%/%%DATADIR%%/library/auto_changelog.pyc
%%PYSUPPORT%%/%%DATADIR%%/library/autoformat.pyc
%%PYSUPPORT%%/%%DATADIR%%/library/autognatpp.pyc
%%PYSUPPORT%%/%%DATADIR%%/library/copy_paste.pyc
%%PYSUPPORT%%/%%DATADIR%%/library/copy_paste_toolbar.pyc
%%PYSUPPORT%%/%%DATADIR%%/library/create_missing_dirs.pyc
%%PYSUPPORT%%/%%DATADIR%%/library/createfile.pyc
%%PYSUPPORT%%/%%DATADIR%%/library/debugger.pyc
%%PYSUPPORT%%/%%DATADIR%%/library/dependencies.pyc
%%PYSUPPORT%%/%%DATADIR%%/library/eclipse.pyc
%%PYSUPPORT%%/%%DATADIR%%/library/execute_extended.pyc
%%PYSUPPORT%%/%%DATADIR%%/library/filedeps.pyc
%%PYSUPPORT%%/%%DATADIR%%/library/filepos.pyc
%%PYSUPPORT%%/%%DATADIR%%/library/first_subtype.pyc
%%PYSUPPORT%%/%%DATADIR%%/library/gnatpp_switches.pyc
%%PYSUPPORT%%/%%DATADIR%%/library/highlight_selection.pyc
%%PYSUPPORT%%/%%DATADIR%%/library/isearch.pyc
%%PYSUPPORT%%/%%DATADIR%%/library/ispell.pyc
%%PYSUPPORT%%/%%DATADIR%%/library/local_history.pyc
%%PYSUPPORT%%/%%DATADIR%%/library/occurrences.pyc
%%PYSUPPORT%%/%%DATADIR%%/library/online_support.pyc
%%PYSUPPORT%%/%%DATADIR%%/library/open_file.pyc
%%PYSUPPORT%%/%%DATADIR%%/library/pygps/__init__.pyc
%%PYSUPPORT%%/%%DATADIR%%/library/pygps/notebook.pyc
%%PYSUPPORT%%/%%DATADIR%%/library/pygps/project.pyc
%%PYSUPPORT%%/%%DATADIR%%/library/pygps/tree.pyc
%%PYSUPPORT%%/%%DATADIR%%/library/save_on_compile.pyc
%%PYSUPPORT%%/%%DATADIR%%/library/separate.pyc
%%PYSUPPORT%%/%%DATADIR%%/library/simple_project.pyc
%%PYSUPPORT%%/%%DATADIR%%/library/skeleton.pyc
%%PYSUPPORT%%/%%DATADIR%%/library/unicode.pyc
%%PYSUPPORT%%/%%DATADIR%%/library/unused_entities.pyc
%%PYSUPPORT%%/%%DATADIR%%/library/vi.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/Makefile.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/ada_support.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/align.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/auto_highlight_occurrences.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/block_completion.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/codepeer.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/dispatching.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/docgen_base_tags.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/editors.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/expanded_code.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/gcov.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/git_support.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/gnat_switches.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/gnatcheck.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/gnatdist_support.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/gnatpsta.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/gnatstack.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/gps_utils/__init__.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/gps_utils/console_process.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/gps_utils/gnat_rules.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/gps_utils/gnatcheck_default.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/gps_utils/gnatcheck_rules_editor.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/gps_utils/highlighter.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/gps_utils/switches.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/listvars.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/locations_view_utils.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/methods.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/navigation_utils.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/os_utils.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/pipe.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/python_doc.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/python_support.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/rectangles.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/reset_gps_registry.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/shell.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/sort_selection.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/spark/spark.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/spark_support.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/text_utils.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/tip_of_the_day.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/url.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/xcov.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/xml_support.pyc
%%PYSUPPORT%%/%%DATADIR%%/plug-ins/zoom.pyc
@dirrm %%EXAMPLESDIR%%/xml
@dirrm %%EXAMPLESDIR%%/tutorial/struct
@dirrm %%EXAMPLESDIR%%/tutorial/projects/prj4
@dirrm %%EXAMPLESDIR%%/tutorial/projects/prj3
@dirrm %%EXAMPLESDIR%%/tutorial/projects/prj2
@dirrm %%EXAMPLESDIR%%/tutorial/projects/prj1
@dirrm %%EXAMPLESDIR%%/tutorial/projects
@dirrm %%EXAMPLESDIR%%/tutorial/obj
@dirrm %%EXAMPLESDIR%%/tutorial/matrix_handling
@dirrm %%EXAMPLESDIR%%/tutorial/common
@dirrm %%EXAMPLESDIR%%/tutorial
@dirrm %%EXAMPLESDIR%%/remote/src
@dirrm %%EXAMPLESDIR%%/remote/obj
@dirrm %%EXAMPLESDIR%%/remote
@dirrm %%EXAMPLESDIR%%/python
@dirrm %%EXAMPLESDIR%%/language
@dirrm %%EXAMPLESDIR%%/demo/struct
@dirrm %%EXAMPLESDIR%%/demo/projects/prj4
@dirrm %%EXAMPLESDIR%%/demo/projects/prj3
@dirrm %%EXAMPLESDIR%%/demo/projects/prj2
@dirrm %%EXAMPLESDIR%%/demo/projects/prj1
@dirrm %%EXAMPLESDIR%%/demo/projects
@dirrm %%EXAMPLESDIR%%/demo/obj
@dirrm %%EXAMPLESDIR%%/demo/matrix_handling
@dirrm %%EXAMPLESDIR%%/demo/common
@dirrm %%EXAMPLESDIR%%/demo
@dirrm %%EXAMPLESDIR%%
@dirrm %%DATADIR%%/templates/simple_project/src
@dirrm %%DATADIR%%/templates/simple_project/obj
@dirrm %%DATADIR%%/templates/simple_project
@dirrm %%DATADIR%%/templates/gtkada_minimal/src
@dirrm %%DATADIR%%/templates/gtkada_minimal/obj
@dirrm %%DATADIR%%/templates/gtkada_minimal
@dirrm %%DATADIR%%/templates/aws_web_server/tmplt
@dirrm %%DATADIR%%/templates/aws_web_server/src
@dirrm %%DATADIR%%/templates/aws_web_server/img
@dirrm %%DATADIR%%/templates/aws_web_server/css
@dirrm %%DATADIR%%/templates/aws_web_server_blocks/tmplt
@dirrm %%DATADIR%%/templates/aws_web_server_blocks/src
@dirrm %%DATADIR%%/templates/aws_web_server_blocks/js
@dirrm %%DATADIR%%/templates/aws_web_server_blocks/img
@dirrm %%DATADIR%%/templates/aws_web_server_blocks/gen
@dirrm %%DATADIR%%/templates/aws_web_server_blocks/css
@dirrm %%DATADIR%%/templates/aws_web_server_blocks
@dirrm %%DATADIR%%/templates/aws_web_server
@dirrm %%DATADIR%%/templates/aws_simple_web_server/src
@dirrm %%DATADIR%%/templates/aws_simple_web_server
@dirrm %%DATADIR%%/templates/ajis_hello/src_java/com/adacore/example
@dirrm %%DATADIR%%/templates/ajis_hello/src_java/com/adacore
@dirrm %%DATADIR%%/templates/ajis_hello/src_java/com
@dirrm %%DATADIR%%/templates/ajis_hello/src_java
@dirrm %%DATADIR%%/templates/ajis_hello/src_ada
@dirrm %%DATADIR%%/templates/ajis_hello/obj
@dirrm %%DATADIR%%/templates/ajis_hello/binding
@dirrm %%DATADIR%%/templates/ajis_hello/bin
@dirrm %%DATADIR%%/templates/ajis_hello
@dirrm %%DATADIR%%/templates
@dirrm %%DATADIR%%/plug-ins/spark
@dirrm %%DATADIR%%/plug-ins/images
@dirrm %%DATADIR%%/plug-ins/gps_utils
@dirrm %%DATADIR%%/library/pygps
@dirrm %%DATADIR%%/library
@dirrm %%DATADIR%%/icons/other
@dirrm %%DATADIR%%/icons/9px
@dirrm %%DATADIR%%/icons/48px
@dirrm %%DATADIR%%/icons/32px
@dirrm %%DATADIR%%/icons/24px
@dirrm %%DATADIR%%/icons/20px
@dirrm %%DATADIR%%/icons/18px
@dirrm %%DATADIR%%/icons/16px/entities
@dirrm %%DATADIR%%/icons/16px
@dirrm %%DATADIR%%/icons
@dirrm %%DATADIR%%/docgen2/support/images
@dirrm %%DATADIR%%/docgen2/support
@dirrm %%DATADIR%%/docgen2/custom
@dirrm %%DATADIR%%/docgen2
@dirrm %%DATADIR%%/aunit
@dirrm %%DOCSDIR%%/html
@dirrm %%DOCSDIR%%
@dirrmtry %%DATADIR%%/plug-ins
@dirrmtry %%DATADIR%%