diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2006-06-23 22:21:18 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2006-06-23 22:21:18 +0800 |
commit | 3d96d8a075623996be402b46756783e1f93b7445 (patch) | |
tree | d34e6278aa08598a0939c43d011bd9bff7f72ff7 /sysutils | |
parent | 94f7e9db0d4e2df425ff0a0714c5ff94d0bef1de (diff) | |
download | freebsd-ports-gnome-3d96d8a075623996be402b46756783e1f93b7445.tar.gz freebsd-ports-gnome-3d96d8a075623996be402b46756783e1f93b7445.tar.zst freebsd-ports-gnome-3d96d8a075623996be402b46756783e1f93b7445.zip |
Add rcsedit, a simple wrapper for RCS written in Perl.
PR: 99346
Submitted by: Antonio Querubin <tony@lava.net>
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/Makefile | 1 | ||||
-rw-r--r-- | sysutils/rcsedit/Makefile | 27 | ||||
-rw-r--r-- | sysutils/rcsedit/distinfo | 3 | ||||
-rw-r--r-- | sysutils/rcsedit/pkg-descr | 6 |
4 files changed, 37 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile index f40de8c1b09a..2a8b355bdb09 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -478,6 +478,7 @@ SUBDIR += raincoat SUBDIR += rc_subr SUBDIR += rclean + SUBDIR += rcsedit SUBDIR += rdate SUBDIR += rdiff-backup SUBDIR += rdiff-backup-devel diff --git a/sysutils/rcsedit/Makefile b/sysutils/rcsedit/Makefile new file mode 100644 index 000000000000..94c72758b60e --- /dev/null +++ b/sysutils/rcsedit/Makefile @@ -0,0 +1,27 @@ +# New ports collection makefile for: rcsedit +# Date created: 22 June 2006 +# Whom: Antonio Querubin <tony@lava.net> +# +# $FreeBSD$ +# + +PORTNAME= rcsedit +PORTVERSION= 1.3.1 +CATEGORIES= sysutils +MASTER_SITES= http://lava.net/rcsedit/ \ + http://www.ipv6.lava.net/rcsedit/ + +MAINTAINER= system@lava.net +COMMENT= A simple wrapper for RCS written in Perl + +PLIST_FILES= bin/rcsedit + +USE_PERL5_RUN= yes + +post-patch: + @${REINPLACE_CMD} -e '1s|.*perl|#!${PERL}|' ${WRKSRC}/${PORTNAME} + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + +.include <bsd.port.mk> diff --git a/sysutils/rcsedit/distinfo b/sysutils/rcsedit/distinfo new file mode 100644 index 000000000000..f8e2309d0cce --- /dev/null +++ b/sysutils/rcsedit/distinfo @@ -0,0 +1,3 @@ +MD5 (rcsedit-1.3.1.tar.gz) = f372c2e04c50afaabb0a501ca47c0cd5 +SHA256 (rcsedit-1.3.1.tar.gz) = f75a9dfe018cf43d51a67275c7128c2e95242eed6638b828b82ea12b6f9e1cdc +SIZE (rcsedit-1.3.1.tar.gz) = 11295 diff --git a/sysutils/rcsedit/pkg-descr b/sysutils/rcsedit/pkg-descr new file mode 100644 index 000000000000..03a0944f0b07 --- /dev/null +++ b/sysutils/rcsedit/pkg-descr @@ -0,0 +1,6 @@ +rcsedit is a simple wrapper for RCS written in Perl. It takes care of calling +the underlying RCS commands in order to maintain a file under RCS control, +including initial check-in. It also goes beyond what RCS normally does by +ensuring ownership, group, and permissions of the file are preserved. + +WWW: http://www.lava.net/rcsedit |