Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 25 Apr 2014 23:25:47 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r352172 - in head/devel/florist-gpl: . files
Message-ID:  <201404252325.s3PNPl0Y000805@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201404252325.s3PNPl0Y000805>