devel/ahven: Two more fixes
Fix 1: It was building windows compat by default, switch to "unix" Fix 2: BSD_INSTALL_LIB was stripping all symbols out of static libary, switch to BSD_INSTALL_DATA to avoid that.
This commit is contained in:
parent
0f78f438cb
commit
d3ae2712e3
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=344823
2 changed files with 3 additions and 2 deletions
|
@ -3,7 +3,7 @@
|
|||
|
||||
PORTNAME= ahven
|
||||
PORTVERSION= 2.4
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= SF
|
||||
MASTER_SITE_SUBDIR=${PORTNAME}/${PORTNAME}/Ahven%20${PORTVERSION}
|
||||
|
@ -17,6 +17,7 @@ BUILD_DEPENDS= adactl:${PORTSDIR}/lang/adacontrol
|
|||
|
||||
USES= ada
|
||||
ALL_TARGET= build_all
|
||||
MAKE_ENV+= OS_VERSION=unix
|
||||
|
||||
OPTIONS_DEFINE= DOCS
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
+ mkdir -p $(DESTDIR)$(PREFIX)/lib/gnat
|
||||
+ $(BSD_INSTALL_DATA) $(SOURCES) $(DESTDIR)$(PREFIX)/include/ahven
|
||||
+ $(BSD_INSTALL_DATA) $(ALI_FILES) $(DESTDIR)$(PREFIX)/lib/ahven
|
||||
+ $(BSD_INSTALL_LIB) lib/$(STATIC_LIBRARY) $(DESTDIR)$(PREFIX)/lib/ahven
|
||||
+ $(BSD_INSTALL_DATA) lib/$(STATIC_LIBRARY) $(DESTDIR)$(PREFIX)/lib/ahven
|
||||
+ $(BSD_INSTALL_DATA) $(GPR_FILE) $(DESTDIR)$(PREFIX)/lib/gnat
|
||||
|
||||
install_docs: userguide
|
||||
|
|
Loading…
Reference in a new issue