From 019ab276a6d0fb2b72ea83b5c542c9e4f56694cb Mon Sep 17 00:00:00 2001 From: John Marino Date: Sat, 17 May 2014 15:34:01 +0000 Subject: [PATCH] textproc/templates_parser: Define Naming in gpr file Two source files have non-standard names as they were build options. The gpr file needs to pass this information to gprbuild users. --- textproc/templates_parser/Makefile | 1 + textproc/templates_parser/files/templates_parser.gpr | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/textproc/templates_parser/Makefile b/textproc/templates_parser/Makefile index 7f754dc5031d..737b0fe2b651 100644 --- a/textproc/templates_parser/Makefile +++ b/textproc/templates_parser/Makefile @@ -3,6 +3,7 @@ PORTNAME= templates_parser PORTVERSION= 11.9.0.0 +PORTREVISION= 1 CATEGORIES= textproc MASTER_SITES= http://downloads.dragonlace.net/src/ diff --git a/textproc/templates_parser/files/templates_parser.gpr b/textproc/templates_parser/files/templates_parser.gpr index f0634f7dbcd1..85f9e536dd37 100644 --- a/textproc/templates_parser/files/templates_parser.gpr +++ b/textproc/templates_parser/files/templates_parser.gpr @@ -16,4 +16,11 @@ project Templates_Parser is end case; for Externally_Built use "true"; + package Naming is + for Implementation ("Templates_Parser.Input") + use "templates_parser-input__standalone.adb"; + for Implementation ("Templates_Parser_Tasking") + use "templates_parser_tasking__standard_tasking.adb"; + end Naming; + end Templates_Parser;