From owner-svn-ports-all@FreeBSD.ORG Sat Apr 26 01:12:23 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 93D66D07; Sat, 26 Apr 2014 01:12:23 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 667E01FD9; Sat, 26 Apr 2014 01:12:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s3Q1CN0U049381; Sat, 26 Apr 2014 01:12:23 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s3Q1CN6e049378; Sat, 26 Apr 2014 01:12:23 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201404260112.s3Q1CN6e049378@svn.freebsd.org> From: John Marino Date: Sat, 26 Apr 2014 01:12:23 +0000 (UTC) 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 X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Apr 2014 01:12:23 -0000 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