svn commit: r352172 - in head/devel/florist-gpl: . files
John Marino
marino at FreeBSD.org
Fri Apr 25 23:25:47 UTC 2014
Author: marino
Date: Fri Apr 25 23:25:46 2014
New Revision: 352172
URL: http://svnweb.freebsd.org/changeset/ports/352172
QAT: https://qat.redports.org/buildarchive/r352172/
Log:
devel/florist-gpl: Don't strip static library
Static libraries need to be installed with BSD_INSTALL_DATA macro
rather than BSD_INSTALL_LIB macro because the former will strip the
symbols from the library by default.
PR: ports/188993
Submitted by: Natacha Porte
Approved by: maintainer (self)
MFH: 2014Q2
Modified:
head/devel/florist-gpl/Makefile
head/devel/florist-gpl/files/patch-Makefile.in
Modified: head/devel/florist-gpl/Makefile
==============================================================================
--- head/devel/florist-gpl/Makefile Fri Apr 25 23:20:52 2014 (r352171)
+++ head/devel/florist-gpl/Makefile Fri Apr 25 23:25:46 2014 (r352172)
@@ -3,17 +3,17 @@
PORTNAME= florist-gpl
PORTVERSION= 2012
+PORTREVISION= 1
CATEGORIES= devel
MASTER_SITES= http://downloads.dragonlace.net/src/
DISTNAME= ${PORTNAME}-${PORTVERSION}-src
-EXTRACT_SUFX= .tgz
MAINTAINER= marino at FreeBSD.org
COMMENT= POSIX Ada binding, IEEE Standards 1003.5(b,c)
LICENSE= GPLv3
-USES= ada
+USES= ada tar:tgz
GNU_CONFIGURE= yes
post-extract:
Modified: head/devel/florist-gpl/files/patch-Makefile.in
==============================================================================
--- head/devel/florist-gpl/files/patch-Makefile.in Fri Apr 25 23:20:52 2014 (r352171)
+++ head/devel/florist-gpl/files/patch-Makefile.in Fri Apr 25 23:25:46 2014 (r352172)
@@ -12,7 +12,7 @@
+ $(DESTDIR)$(PREFIX)/include/florist
+ $(BSD_INSTALL_DATA) floristlib/*.ad[bs] $(DESTDIR)$(PREFIX)/include/florist
+ $(BSD_INSTALL_DATA) floristlib/*.ali $(DESTDIR)$(PREFIX)/lib/florist
-+ $(BSD_INSTALL_LIB) floristlib/*.a $(DESTDIR)$(PREFIX)/lib/florist
++ $(BSD_INSTALL_DATA) floristlib/*.a $(DESTDIR)$(PREFIX)/lib/florist
+ $(BSD_INSTALL_DATA) florist.gpr $(DESTDIR)$(PREFIX)/lib/gnat
.PHONY: install clean distclean regen
More information about the svn-ports-all
mailing list