From owner-svn-ports-head@freebsd.org Sun Mar 26 04:54:09 2017 Return-Path: Delivered-To: svn-ports-head@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 058F1D19809; Sun, 26 Mar 2017 04:54:09 +0000 (UTC) (envelope-from araujo@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 BA70B15EB; Sun, 26 Mar 2017 04:54:08 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v2Q4s7uc079573; Sun, 26 Mar 2017 04:54:07 GMT (envelope-from araujo@FreeBSD.org) Received: (from araujo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v2Q4s7Wl079570; Sun, 26 Mar 2017 04:54:07 GMT (envelope-from araujo@FreeBSD.org) Message-Id: <201703260454.v2Q4s7Wl079570@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: araujo set sender to araujo@FreeBSD.org using -f From: Marcelo Araujo Date: Sun, 26 Mar 2017 04:54:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r436933 - in head/sysutils/ucspi-proxy: . 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-head@freebsd.org X-Mailman-Version: 2.1.23 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: Sun, 26 Mar 2017 04:54:09 -0000 Author: araujo Date: Sun Mar 26 04:54:07 2017 New Revision: 436933 URL: https://svnweb.freebsd.org/changeset/ports/436933 Log: - Update to 1.0. - Reset maintainership to myself, previous maintainer is unresponsive. Added: head/sysutils/ucspi-proxy/files/ head/sysutils/ucspi-proxy/files/patch-Makefile (contents, props changed) Modified: head/sysutils/ucspi-proxy/Makefile head/sysutils/ucspi-proxy/distinfo Modified: head/sysutils/ucspi-proxy/Makefile ============================================================================== --- head/sysutils/ucspi-proxy/Makefile Sun Mar 26 04:52:16 2017 (r436932) +++ head/sysutils/ucspi-proxy/Makefile Sun Mar 26 04:54:07 2017 (r436933) @@ -2,18 +2,18 @@ # $FreeBSD$ PORTNAME= ucspi-proxy -PORTVERSION= 0.98 -PORTREVISION= 2 +PORTVERSION= 1.0 CATEGORIES= sysutils MASTER_SITES= http://untroubled.org/ucspi-proxy/ -MAINTAINER= dale.woolridge@gmail.com +MAINTAINER= araujo@FreeBSD.org COMMENT= Proxy program for UCSPI servers and clients +LICENSE= GPLv2 + LIB_DEPENDS= libbg.so:devel/bglibs -CFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib +USES= libtool:build libtool:ldflags BGLIBS_LIB= ${LOCALBASE}/lib/bglibs BGLIBS_INCLUDE= ${LOCALBASE}/include/bglibs Modified: head/sysutils/ucspi-proxy/distinfo ============================================================================== --- head/sysutils/ucspi-proxy/distinfo Sun Mar 26 04:52:16 2017 (r436932) +++ head/sysutils/ucspi-proxy/distinfo Sun Mar 26 04:54:07 2017 (r436933) @@ -1,2 +1,3 @@ -SHA256 (ucspi-proxy-0.98.tar.gz) = bcdae7bc9443f1410b53808839c5af4ce41a398ef17a32287a76749f052f54d2 -SIZE (ucspi-proxy-0.98.tar.gz) = 35278 +TIMESTAMP = 1490367673 +SHA256 (ucspi-proxy-1.0.tar.gz) = 955c0b421b65a46a2c49d3ee0b335addbde0f1d22ce6b305d0b08e9c574d1507 +SIZE (ucspi-proxy-1.0.tar.gz) = 36112 Added: head/sysutils/ucspi-proxy/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/ucspi-proxy/files/patch-Makefile Sun Mar 26 04:54:07 2017 (r436933) @@ -0,0 +1,33 @@ +--- Makefile.orig 2015-08-12 01:51:43 UTC ++++ Makefile +@@ -20,11 +20,12 @@ clean: TARGETS + clean-spac: clean AUTOFILES + rm -f `cat AUTOFILES` + +-compile: conf-cc +- ( echo '#!/bin/sh'; \ ++compile: conf-cc conf-bgincs ++ ( bgincs=`head -n 1 conf-bgincs`; \ ++ echo '#!/bin/sh'; \ + echo 'source=$$1; shift'; \ + echo 'base=`echo "$$source" | sed -e s:\\\\.c$$::`'; \ +- echo exec `head -n 1 conf-cc` -I. '-o $${base}.o -c $$source $${1+"$$@"}'; \ ++ echo exec `head -n 1 conf-cc` -I. "-I'$${bgincs}'" "-I /usr/local/include/" '-o $${base}.o -c $$source $${1+"$$@"}'; \ + ) >compile + chmod 755 compile + +@@ -42,10 +43,11 @@ install: INSTHIER conf-bin conf-man + + libraries: ucspi-proxy.a + +-load: conf-ld +- ( echo '#!/bin/sh';\ ++load: conf-ld conf-bglibs ++ ( bglibs=`head -n 1 conf-bglibs`; \ ++ echo '#!/bin/sh';\ + echo 'main="$$1"; shift';\ +- echo exec `head -n 1 conf-ld` -L. '-o "$$main" "$$main.o" $${1+"$$@"}'; \ ++ echo exec `head -n 1 conf-ld` -L. "-L'$${bglibs}'" "-Wl,-R'$${bglibs}'" '-o "$$main" "$$main.o" $${1+"$$@"}'; \ + ) >load + chmod 755 load +