svn commit: r313081 - in head/net: . svnup
Jason Helfman
jgh at FreeBSD.org
Thu Feb 28 06:59:15 UTC 2013
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 at 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 at 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/
More information about the svn-ports-head
mailing list