Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 26 Mar 2017 04:54:07 +0000 (UTC)
From:      Marcelo Araujo <araujo@FreeBSD.org>
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
Message-ID:  <201703260454.v2Q4s7Wl079570@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
+ 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201703260454.v2Q4s7Wl079570>