svn commit: r352203 - in branches/2014Q2/devel/florist-gpl: . files
John Marino
marino at FreeBSD.org
Sat Apr 26 01:12:23 UTC 2014
Author: marino
Date: Sat Apr 26 01:12:22 2014
New Revision: 352203
URL: http://svnweb.freebsd.org/changeset/ports/352203
QAT: https://qat.redports.org/buildarchive/r352203/
Log:
MFH: r352172
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)
Approved by: portmgr (bapt)
Modified:
branches/2014Q2/devel/florist-gpl/Makefile
branches/2014Q2/devel/florist-gpl/files/patch-Makefile.in
Directory Properties:
branches/2014Q2/ (props changed)
Modified: branches/2014Q2/devel/florist-gpl/Makefile
==============================================================================
--- branches/2014Q2/devel/florist-gpl/Makefile Sat Apr 26 00:39:39 2014 (r352202)
+++ branches/2014Q2/devel/florist-gpl/Makefile Sat Apr 26 01:12:22 2014 (r352203)
@@ -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: branches/2014Q2/devel/florist-gpl/files/patch-Makefile.in
==============================================================================
--- branches/2014Q2/devel/florist-gpl/files/patch-Makefile.in Sat Apr 26 00:39:39 2014 (r352202)
+++ branches/2014Q2/devel/florist-gpl/files/patch-Makefile.in Sat Apr 26 01:12:22 2014 (r352203)
@@ -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