diff options
author | Andrew Pantyukhin <sat@FreeBSD.org> | 2007-06-11 18:14:43 +0000 |
---|---|---|
committer | Andrew Pantyukhin <sat@FreeBSD.org> | 2007-06-11 18:14:43 +0000 |
commit | 4b98590421a8451a27e6c5d9b8430592f9a938ba (patch) | |
tree | aaaa26507dd7884eb4b03e27cfe198bced4a6f25 /sysutils/reclinker | |
parent | 31c0809cd5f5a07fa2b8ad0df2e920f35aebec01 (diff) | |
download | ports-4b98590421a8451a27e6c5d9b8430592f9a938ba.tar.gz ports-4b98590421a8451a27e6c5d9b8430592f9a938ba.zip |
Add port sysutils/reclinker:
reclinker is a recursive symlinking utility. It mirrors a hierarchy of
files by means of symlinks. It's similar to GNU Stow, however:
* written in pure C (no dependencies, fast)
* free of forced, confusing package management terminology (like stow
dir, target dir, package)
* supports both absolut and relative linking
* supports linking into existing hierarchies, handles properly already
existing directory symlinks in the target hierarchy (like /usr/man ->
share/man)
* supports access control (set ownership/mode of created
links/directories, filter processed files based on ownership/mode
requirements)
WWW: http://creo.hu/~csaba/stuff/reclinker/
Author: Csaba Henk
Notes
Notes:
svn path=/head/; revision=193284
Diffstat (limited to 'sysutils/reclinker')
-rw-r--r-- | sysutils/reclinker/Makefile | 24 | ||||
-rw-r--r-- | sysutils/reclinker/distinfo | 3 | ||||
-rw-r--r-- | sysutils/reclinker/pkg-descr | 15 |
3 files changed, 42 insertions, 0 deletions
diff --git a/sysutils/reclinker/Makefile b/sysutils/reclinker/Makefile new file mode 100644 index 000000000000..88a95fe7a30c --- /dev/null +++ b/sysutils/reclinker/Makefile @@ -0,0 +1,24 @@ +# New ports collection makefile for: reclinker +# Date created: 11 June 2007 +# Whom: Andrew Pantyukhin <infofarmer@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= reclinker +PORTVERSION= 0.4 +CATEGORIES= sysutils +MASTER_SITES= http://creo.hu/~csaba/stuff/reclinker/ CENKES + +MAINTAINER= infofarmer@FreeBSD.org +COMMENT= Recursive symlinking utility + +PLIST_FILES= bin/${PORTNAME} bin/recdeleter bin/reclinktester +MAKEFILE= Makefile.m4 +ALL_TARGET= ${PORTNAME} + +post-patch: + @${REINPLACE_CMD} -e '/^PREFIX=/d;/^CC=/d;/^CFLAGS=/d;/^ifelse/,/^)/d;\ + s|cp -a|${INSTALL_PROGRAM}|' ${WRKSRC}/${MAKEFILE} + +.include <bsd.port.mk> diff --git a/sysutils/reclinker/distinfo b/sysutils/reclinker/distinfo new file mode 100644 index 000000000000..aff7cdac2adf --- /dev/null +++ b/sysutils/reclinker/distinfo @@ -0,0 +1,3 @@ +MD5 (reclinker-0.4.tar.gz) = df5f083a7eba67a117d0d7a02276466e +SHA256 (reclinker-0.4.tar.gz) = 9484352c3e2a8d4b6dcc6128a95f311438cbac3270a19fb575986702ad54d743 +SIZE (reclinker-0.4.tar.gz) = 24119 diff --git a/sysutils/reclinker/pkg-descr b/sysutils/reclinker/pkg-descr new file mode 100644 index 000000000000..7e6c3cc5f55a --- /dev/null +++ b/sysutils/reclinker/pkg-descr @@ -0,0 +1,15 @@ +reclinker is a recursive symlinking utility. It mirrors a hierarchy of +files by means of symlinks. It's similar to GNU Stow, however: +* written in pure C (no dependencies, fast) +* free of forced, confusing package management terminology (like stow + dir, target dir, package) +* supports both absolut and relative linking +* supports linking into existing hierarchies, handles properly already + existing directory symlinks in the target hierarchy (like /usr/man -> + share/man) +* supports access control (set ownership/mode of created + links/directories, filter processed files based on ownership/mode + requirements) + +WWW: http://creo.hu/~csaba/stuff/reclinker/ +Author: Csaba Henk |