diff options
author | John Marino <marino@FreeBSD.org> | 2014-03-13 23:46:25 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2014-03-13 23:46:25 +0000 |
commit | 029a2d7f9e107188cdf9578bc4bb72ff67b4c5e7 (patch) | |
tree | 0131f9720522a1d70ff40483da39d7beea4b63ce /lang/adacontrol | |
parent | e248dd7b806cfc856fb0a405608a65f86ebf263f (diff) | |
download | ports-029a2d7f9e107188cdf9578bc4bb72ff67b4c5e7.tar.gz ports-029a2d7f9e107188cdf9578bc4bb72ff67b4c5e7.zip |
Tie libgnat_util.a to libasis
Rather than specify gnat_util every time ASIS is a dependency, set it
as a library dependency for ASIS. LIB_DEPENDS doesn't work because it
is a static library, so just manually add libgnat_util.a to BUILD_DEPENDS
and RUN_DEPENDS, then adjust 3 ports accordingly.
Notes
Notes:
svn path=/head/; revision=348143
Diffstat (limited to 'lang/adacontrol')
-rw-r--r-- | lang/adacontrol/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lang/adacontrol/Makefile b/lang/adacontrol/Makefile index e872ff4f06c1..996e210c8cb6 100644 --- a/lang/adacontrol/Makefile +++ b/lang/adacontrol/Makefile @@ -15,8 +15,7 @@ COMMENT= Tool for detecting use or non-use of specific Ada constructs LICENSE= GPLv2 GMGPL LICENSE_COMB= multi -BUILD_DEPENDS= asis>=2011:${PORTSDIR}/lang/asis \ - gnat_util>=2013:${PORTSDIR}/lang/gnat_util +BUILD_DEPENDS= asis>=2011:${PORTSDIR}/lang/asis USES= ada gmake WRKSRC= ${WRKDIR}/adactl-${PORTVERSION} |