svn commit: r467706 - in head/sysutils: . rw

Kirill Ponomarev krion at FreeBSD.org
Wed Apr 18 12:02:32 UTC 2018


Author: krion
Date: Wed Apr 18 12:02:31 2018
New Revision: 467706
URL: https://svnweb.freebsd.org/changeset/ports/467706

Log:
  rw is a command line program which copies information between files
  or byte streams. The rw command is designed to be a replacement for
  dd with standard style command line flags.
  
  WWW: https://sortix.org/rw/
  
  PR:		227150
  Submitted by:	jsmith at resonatingmedia.com

Added:
  head/sysutils/rw/
  head/sysutils/rw/Makefile   (contents, props changed)
  head/sysutils/rw/distinfo   (contents, props changed)
  head/sysutils/rw/pkg-descr   (contents, props changed)
Modified:
  head/sysutils/Makefile

Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile	Wed Apr 18 11:26:59 2018	(r467705)
+++ head/sysutils/Makefile	Wed Apr 18 12:02:31 2018	(r467706)
@@ -1105,6 +1105,7 @@
     SUBDIR += runit
     SUBDIR += runit-faster
     SUBDIR += runwhen
+    SUBDIR += rw
     SUBDIR += s-tui
     SUBDIR += s6
     SUBDIR += s6-rc

Added: head/sysutils/rw/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/rw/Makefile	Wed Apr 18 12:02:31 2018	(r467706)
@@ -0,0 +1,23 @@
+# $FreeBSD$
+
+PORTNAME=	rw
+PORTVERSION=	1.0
+CATEGORIES=	sysutils
+MASTER_SITES=	https://sortix.org/rw/release/
+DISTNAME=	rw-portable-${PORTVERSION}
+
+MAINTAINER=	jsmith at resonatingmedia.com
+COMMENT=	Simple replacement for dd wth standard command line flags
+
+LICENSE=	ISCL
+
+PLIST_FILES=	bin/rw man/man1/rw.1.gz
+
+pre-patch:
+	@${REINPLACE_CMD} -e 's|$$(PREFIX)/share|$$(PREFIX)|' \
+	  	${WRKSRC}/Makefile
+
+post-install:
+	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
+
+.include <bsd.port.mk>

Added: head/sysutils/rw/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/rw/distinfo	Wed Apr 18 12:02:31 2018	(r467706)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1523993918
+SHA256 (rw-portable-1.0.tar.gz) = 50009730e36991dfe579716f91f4f616f5ba05ffb7bf69c03d41bf305ed93b6d
+SIZE (rw-portable-1.0.tar.gz) = 12993

Added: head/sysutils/rw/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/rw/pkg-descr	Wed Apr 18 12:02:31 2018	(r467706)
@@ -0,0 +1,5 @@
+rw is a command line program which copies information between files or byte
+streams. The rw command is designed to be a replacement for dd with 
+standard style command line flags.
+
+WWW: https://sortix.org/rw/


More information about the svn-ports-head mailing list