From owner-svn-ports-head@FreeBSD.ORG Thu Feb 28 06:59:15 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 6DE86955; Thu, 28 Feb 2013 06:59:15 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 2EFCDE95; Thu, 28 Feb 2013 06:59:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r1S6xEIU085449; Thu, 28 Feb 2013 06:59:14 GMT (envelope-from jgh@svn.freebsd.org) Received: (from jgh@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r1S6xEck085445; Thu, 28 Feb 2013 06:59:14 GMT (envelope-from jgh@svn.freebsd.org) Message-Id: <201302280659.r1S6xEck085445@svn.freebsd.org> From: Jason Helfman Date: Thu, 28 Feb 2013 06:59:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r313081 - in head/net: . svnup 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.14 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: Thu, 28 Feb 2013 06:59:15 -0000 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 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/