From owner-svn-ports-all@freebsd.org Thu Jan 21 03:27:38 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8DD3DA896DC; Thu, 21 Jan 2016 03:27:38 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 4A7801CDE; Thu, 21 Jan 2016 03:27:38 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0L3RbHp045320; Thu, 21 Jan 2016 03:27:37 GMT (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0L3RbjC045317; Thu, 21 Jan 2016 03:27:37 GMT (envelope-from vanilla@FreeBSD.org) Message-Id: <201601210327.u0L3RbjC045317@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vanilla set sender to vanilla@FreeBSD.org using -f From: "Vanilla I. Shu" Date: Thu, 21 Jan 2016 03:27:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r406819 - in head/devel/pure-stldict: . files X-SVN-Group: ports-head 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.20 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: Thu, 21 Jan 2016 03:27:38 -0000 Author: vanilla Date: Thu Jan 21 03:27:36 2016 New Revision: 406819 URL: https://svnweb.freebsd.org/changeset/ports/406819 Log: 1: Upgrade to 0.8. 2: remove USE_GCC, it's compilable with clang. Approved by: maintainer via twitter. Modified: head/devel/pure-stldict/Makefile head/devel/pure-stldict/distinfo head/devel/pure-stldict/files/patch-Makefile Modified: head/devel/pure-stldict/Makefile ============================================================================== --- head/devel/pure-stldict/Makefile Thu Jan 21 01:42:54 2016 (r406818) +++ head/devel/pure-stldict/Makefile Thu Jan 21 03:27:36 2016 (r406819) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= pure-stldict -PORTVERSION= 0.5 -PORTREVISION= 4 +PORTVERSION= 0.8 CATEGORIES= devel MASTER_SITES= https://cdn.bitbucket.org/purelang/pure-lang/downloads/ DIST_SUBDIR= pure @@ -14,9 +13,8 @@ COMMENT= Pure interface to C++ STL map/u LICENSE= GPLv3 LGPL3 LICENSE_COMB= dual -USES= pure +USES= pkgconfig pure -USE_GCC= yes CXXFLAGS+= -std=c++0x -DHAVE_STD_IS_PERMUTATION PORTDOCS= README Modified: head/devel/pure-stldict/distinfo ============================================================================== --- head/devel/pure-stldict/distinfo Thu Jan 21 01:42:54 2016 (r406818) +++ head/devel/pure-stldict/distinfo Thu Jan 21 03:27:36 2016 (r406819) @@ -1,2 +1,2 @@ -SHA256 (pure/pure-stldict-0.5.tar.gz) = 3c12b4e15d79955e28d025d62525685e3bdbf4a07a3849cffad82eeb578e022b -SIZE (pure/pure-stldict-0.5.tar.gz) = 64968 +SHA256 (pure/pure-stldict-0.8.tar.gz) = 5b894ae6dc574c7022258e2732bea649c82c959ec4d0be13fb5a3e8ba8488f28 +SIZE (pure/pure-stldict-0.8.tar.gz) = 69024 Modified: head/devel/pure-stldict/files/patch-Makefile ============================================================================== --- head/devel/pure-stldict/files/patch-Makefile Thu Jan 21 01:42:54 2016 (r406818) +++ head/devel/pure-stldict/files/patch-Makefile Thu Jan 21 03:27:36 2016 (r406819) @@ -1,27 +1,11 @@ ---- ./Makefile.orig 2012-03-22 19:47:34.000000000 +0100 -+++ ./Makefile 2014-01-04 17:44:05.000000000 +0100 -@@ -4,11 +4,11 @@ - - # platform-specific setup - --DLL = $(shell pkg-config pure --variable DLL) --PIC = $(shell pkg-config pure --variable PIC) --shared = $(shell pkg-config pure --variable shared) -+DLL = .so -+PIC = -fPIC -+shared = -shared - --libdir = $(shell pkg-config pure --variable libdir) -+libdir = $(prefix)/lib - installdir = $(addprefix $(DESTDIR), $(libdir)/pure) - - MOD_CXXFLAGS = $(PIC) $(shell pkg-config pure --cflags) $(CXXFLAGS) $(CPPFLAGS) -@@ -25,7 +25,7 @@ +--- Makefile.orig 2016-01-21 03:17:01 UTC ++++ Makefile +@@ -30,7 +30,7 @@ objects = $(patsubst %.cc, %$(DLL), $(cp all: $(objects) %$(DLL): %.cc -- g++ $(shared) -o $@ $(MOD_CXXFLAGS) $< $(MOD_LDFLAGS) $(LIBS) -+ $(CXX) $(shared) $(CPPFLAGS) $(CXXFLAGS) $(PIC) $< -o $@ $(LDFLAGS) -lpure $(LIBS) +- g++ $(shared) $(dllname) -o $@ $(MOD_CXXFLAGS) $< $(MOD_LDFLAGS) $(LIBS) ++ $(CXX) $(shared) $(dllname) -o $@ $(MOD_CXXFLAGS) $< $(MOD_LDFLAGS) $(LIBS) clean: rm -f *.o *$(DLL) examples/life *~