diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2004-05-28 18:07:21 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2004-05-28 18:07:21 +0000 |
commit | c2912d6af785e5699e4ac7255f05094808190732 (patch) | |
tree | d009192452cda31e0123a0758e1fc686bea1b4d9 /sysutils | |
parent | c5d4ad34d84ef227e9893c97ad58a0b61e29cbc9 (diff) |
Notes
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/Makefile | 1 | ||||
-rw-r--r-- | sysutils/pdumpfs-rsync/Makefile | 37 | ||||
-rw-r--r-- | sysutils/pdumpfs-rsync/distinfo | 2 | ||||
-rw-r--r-- | sysutils/pdumpfs-rsync/files/patch-pdumpfs-rsync | 11 | ||||
-rw-r--r-- | sysutils/pdumpfs-rsync/pkg-descr | 4 |
5 files changed, 55 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile index a33f439c25ac..a00799fafa5d 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -276,6 +276,7 @@ SUBDIR += pciutils SUBDIR += pdumpfs SUBDIR += pdumpfs-clean + SUBDIR += pdumpfs-rsync SUBDIR += pear-Cache SUBDIR += pear-File SUBDIR += pear-File_Find diff --git a/sysutils/pdumpfs-rsync/Makefile b/sysutils/pdumpfs-rsync/Makefile new file mode 100644 index 000000000000..ce1fb5b5bb4c --- /dev/null +++ b/sysutils/pdumpfs-rsync/Makefile @@ -0,0 +1,37 @@ +# New ports collection makefile for: pdumpfs-rsync +# Date created: 29 May 2004 +# Whom: knu@FreeBSD.org +# +# $FreeBSD$ +# + +PORTNAME= pdumpfs-rsync +PORTVERSION= 0.8.1 +CATEGORIES= sysutils net +MASTER_SITES= http://tach.arege.net/software/pdumpfs-rsync/ +DISTFILES= ${PROG} +EXTRACT_ONLY= # none + +MAINTAINER= knu@FreeBSD.org +COMMENT= A utility to back up remote files with pdumpfs and rsync + +RUN_DEPENDS= pdumpfs:${PORTSDIR}/sysutils/pdumpfs \ + rsync:${PORTSDIR}/net/rsync + +USE_RUBY= yes +RUBY_SHEBANG_FILES= ${PROG} + +PROG= ${PORTNAME} + +NO_WRKSUBDIR= yes +NO_BUILD= yes +PLIST_FILES= sbin/${PROG} + +do-extract: + ${MKDIR} ${WRKDIR} + ${CP} ${DISTDIR}/${DIST_SUBDIR}/${PROG} ${WRKDIR}/ + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/${PROG} ${PREFIX}/sbin/ + +.include <bsd.port.mk> diff --git a/sysutils/pdumpfs-rsync/distinfo b/sysutils/pdumpfs-rsync/distinfo new file mode 100644 index 000000000000..4f606608ffbd --- /dev/null +++ b/sysutils/pdumpfs-rsync/distinfo @@ -0,0 +1,2 @@ +MD5 (pdumpfs-rsync) = 662a356f812c8edd6fa986dd38dd1800 +SIZE (pdumpfs-rsync) = 4533 diff --git a/sysutils/pdumpfs-rsync/files/patch-pdumpfs-rsync b/sysutils/pdumpfs-rsync/files/patch-pdumpfs-rsync new file mode 100644 index 000000000000..f9d7ece54685 --- /dev/null +++ b/sysutils/pdumpfs-rsync/files/patch-pdumpfs-rsync @@ -0,0 +1,11 @@ +--- pdumpfs-rsync.orig Sat May 29 03:00:00 2004 ++++ pdumpfs-rsync Sat May 29 03:01:57 2004 +@@ -15,7 +15,7 @@ + # the GNU General Public License version 2. + # + +-load '/usr/bin/pdumpfs' ++load File.join(File.dirname(__FILE__), 'pdumpfs') + require 'ftools' + require 'getoptlong' + diff --git a/sysutils/pdumpfs-rsync/pkg-descr b/sysutils/pdumpfs-rsync/pkg-descr new file mode 100644 index 000000000000..b109827376c4 --- /dev/null +++ b/sysutils/pdumpfs-rsync/pkg-descr @@ -0,0 +1,4 @@ +pdumpfs-rsync is a utility to back up remote files with pdumpfs and rsync + +Author: Taku YASUI <tach@debian.or.jp> +WWW-ja: http://tach.arege.net/software/pdumpfs-rsync/ |