Date: Thu, 28 Feb 2013 06:59:14 +0000 (UTC) From: Jason Helfman <jgh@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r313081 - in head/net: . svnup Message-ID: <201302280659.r1S6xEck085445@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jgh Date: Thu Feb 28 06:59:13 2013 New Revision: 313081 URL: http://svnweb.freebsd.org/changeset/ports/313081 Log: - add new port: net/svnup A lightweight, dependency-free program to pull source using the svn protocol. WWW: http://jcm.dsl.visi.com/freebsd/svnup/ PR: 176381 Submitted by: jcm@visi.com Added: head/net/svnup/ head/net/svnup/Makefile (contents, props changed) head/net/svnup/distinfo (contents, props changed) head/net/svnup/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Thu Feb 28 03:48:37 2013 (r313080) +++ head/net/Makefile Thu Feb 28 06:59:13 2013 (r313081) @@ -1123,6 +1123,7 @@ SUBDIR += subnetcalc SUBDIR += suckblow SUBDIR += sup + SUBDIR += svnup SUBDIR += tableutil SUBDIR += tac_plus-libradius SUBDIR += tac_plus4 Added: head/net/svnup/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/svnup/Makefile Thu Feb 28 06:59:13 2013 (r313081) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= svnup +PORTVERSION= 0.55 +CATEGORIES= net +MASTER_SITES= http://jcm.dsl.visi.com/freebsd/svnup/ + +MAINTAINER= jcm@visi.com +COMMENT= Lightweight program to pull source using the svn protocol + +LICENSE= BSD + +LDFLAGS+= -lmd +USE_XZ= yes + +MAN1= ${PORTNAME}.1 +PLIST_FILES= bin/${PORTNAME} + +do-build: + cd ${WRKSRC} && \ + ${CC} -o ${PORTNAME} ${CFLAGS} ${PORTNAME}.c ${LDFLAGS} + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/ + ${INSTALL_MAN} ${WRKSRC}/${MAN1} ${MAN1PREFIX}/man/man1/ + +.include <bsd.port.mk> Added: head/net/svnup/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/svnup/distinfo Thu Feb 28 06:59:13 2013 (r313081) @@ -0,0 +1,2 @@ +SHA256 (svnup-0.55.tar.xz) = b2471d33d19cf0b6cb1516c0ca56c7e4a0eed578db0a04d0c3eb5309f211202d +SIZE (svnup-0.55.tar.xz) = 9160 Added: head/net/svnup/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/svnup/pkg-descr Thu Feb 28 06:59:13 2013 (r313081) @@ -0,0 +1,3 @@ +A lightweight, dependency-free program to pull source using the svn protocol. + +WWW: http://jcm.dsl.visi.com/freebsd/svnup/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201302280659.r1S6xEck085445>