Date: Sat, 26 Apr 2014 01:12:23 +0000 (UTC) From: John Marino <marino@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r352203 - in branches/2014Q2/devel/florist-gpl: . files Message-ID: <201404260112.s3Q1CN6e049378@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201404260112.s3Q1CN6e049378>