From owner-svn-ports-head@FreeBSD.ORG Fri Jun 27 17:17:32 2014 Return-Path: Delivered-To: svn-ports-head@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 5041AA13; Fri, 27 Jun 2014 17:17:32 +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 3D8262675; Fri, 27 Jun 2014 17:17:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5RHHW8R096916; Fri, 27 Jun 2014 17:17:32 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5RHHWf5096915; Fri, 27 Jun 2014 17:17:32 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201406271717.s5RHHWf5096915@svn.freebsd.org> From: Martin Wilke Date: Fri, 27 Jun 2014 17:17:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r359585 - head/databases/sqlite3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Jun 2014 17:17:32 -0000 Author: miwi Date: Fri Jun 27 17:17:31 2014 New Revision: 359585 URL: http://svnweb.freebsd.org/changeset/ports/359585 QAT: https://qat.redports.org/buildarchive/r359585/ Log: - Use proper stripping - Don't keep la file since shlib got downgraded in r359529 - Bump PORTREVISION Modified: head/databases/sqlite3/Makefile Modified: head/databases/sqlite3/Makefile ============================================================================== --- head/databases/sqlite3/Makefile Fri Jun 27 17:09:43 2014 (r359584) +++ head/databases/sqlite3/Makefile Fri Jun 27 17:17:31 2014 (r359585) @@ -3,6 +3,7 @@ PORTNAME= sqlite3 PORTVERSION= 3.8.5 +PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= http://www.sqlite.org/2014/ http://www2.sqlite.org/2014/ http://www3.sqlite.org/2014/ DISTNAME= sqlite-autoconf-3080500 @@ -17,9 +18,10 @@ LICENSE_PERMS= dist-mirror dist-sell pkg CONFLICTS= sqlite34-[0-9]* sqlcipher-[0-9]* -USES= pathfix libtool:keepla +USES= pathfix libtool USE_LDCONFIG= yes GNU_CONFIGURE= yes +INSTALL_TARGET= install-strip MAKE_JOBS_UNSAFE= yes @@ -70,9 +72,9 @@ OPTIONS_DEFAULT= FTS4 URI METADATA SECUR # RTREE used by graphics/mapnik, databases/spatialite PLIST_FILES= bin/sqlite3 include/sqlite3.h include/sqlite3ext.h \ - lib/libsqlite3.a lib/libsqlite3.la lib/libsqlite3.so \ - lib/libsqlite3.so.0 lib/libsqlite3.so.0.8.6 \ - libdata/pkgconfig/sqlite3.pc man/man1/sqlite3.1.gz + lib/libsqlite3.a lib/libsqlite3.so lib/libsqlite3.so.0 \ + lib/libsqlite3.so.0.8.6 libdata/pkgconfig/sqlite3.pc \ + man/man1/sqlite3.1.gz # The default numeric file permissions for newly created database files under unix. # If not specified, the default is 0644 which means that the files is globally @@ -133,7 +135,4 @@ post-build: @${ECHO_MSG} "===> WARNING: on ${ARCH} don't pass atof1-* tests" .endif -post-install: - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libsqlite3.so.0.8.6 - .include