svn commit: r323798 - in head/sysutils/rdup: . files
Alexey Dokuchaev
danfe at FreeBSD.org
Sat Jul 27 17:08:57 UTC 2013
Author: danfe
Date: Sat Jul 27 17:08:56 2013
New Revision: 323798
URL: http://svnweb.freebsd.org/changeset/ports/323798
Log:
- Unbreak parallel builds (-jX) by fixing targets' dependencies
- Define LICENSE (GPLv3), improve on COMMENT
- Convert USE_GMAKE to USES (gmake)
- Drop GNU_CONFIGURE, USE_AUTOTOOLS implies it
- Reformat port description (now perfectly aligned on both sides)
Reported by: pointyhat-west
Modified:
head/sysutils/rdup/Makefile
head/sysutils/rdup/files/patch-GNUmakefile.in
head/sysutils/rdup/pkg-descr
Modified: head/sysutils/rdup/Makefile
==============================================================================
--- head/sysutils/rdup/Makefile Sat Jul 27 17:05:15 2013 (r323797)
+++ head/sysutils/rdup/Makefile Sat Jul 27 17:08:56 2013 (r323798)
@@ -1,4 +1,4 @@
-# Created by: corky1951 at comcast.net
+# Created by: Charlie Kester <corky1951 at comcast.net>
# $FreeBSD$
PORTNAME= rdup
@@ -8,23 +8,22 @@ CATEGORIES= sysutils
MASTER_SITES= http://miek.nl/projects/rdup/
MAINTAINER= rm at FreeBSD.org
-COMMENT= Tool to generate an (incremental) backup file list
+COMMENT= Tool to generate (incremental) backup file list
+
+LICENSE= GPLv3
LIB_DEPENDS= glib-2.0:${PORTSDIR}/devel/glib20 \
pcre:${PORTSDIR}/devel/pcre \
archive:${PORTSDIR}/archivers/libarchive \
nettle:${PORTSDIR}/security/nettle
+USES= gmake pkgconfig
USE_BZIP2= yes
-
USE_AUTOTOOLS= autoconf
-USES= pkgconfig
-GNU_CONFIGURE= yes
-LDFLAGS+= -L${LOCALBASE}/lib
-
-USE_GMAKE= yes
MAKEFILE= GNUmakefile
+LDFLAGS+= -L${LOCALBASE}/lib
+
PLIST_FILES= bin/rdup \
bin/rdup-simple \
bin/rdup-tr \
Modified: head/sysutils/rdup/files/patch-GNUmakefile.in
==============================================================================
--- head/sysutils/rdup/files/patch-GNUmakefile.in Sat Jul 27 17:05:15 2013 (r323797)
+++ head/sysutils/rdup/files/patch-GNUmakefile.in Sat Jul 27 17:08:56 2013 (r323798)
@@ -18,3 +18,16 @@
INSTALL=./install-sh -c
INSTALL_DATA=$(INSTALL) -m 644
+@@ -56,10 +56,10 @@
+ ${GCC} ${OBJ} ${GLIB_LIBS} ${LDFLAGS} ${LIBS} -o rdup
+
+ ifeq (${ARCHIVE_L},no)
+-strip:
++strip: rdup rdup-up
+ strip rdup rdup-up
+ else
+-strip:
++strip: rdup rdup-tr rdup-up
+ strip rdup rdup-tr rdup-up
+ endif
+
Modified: head/sysutils/rdup/pkg-descr
==============================================================================
--- head/sysutils/rdup/pkg-descr Sat Jul 27 17:05:15 2013 (r323797)
+++ head/sysutils/rdup/pkg-descr Sat Jul 27 17:08:56 2013 (r323798)
@@ -1,10 +1,10 @@
-rdup is a utility inspired by rsync and the Plan9 way of doing backups.
+rdup is an utility inspired by rsync and the Plan9 way of doing backups.
-rdup itself does not backup anything; it only prints a list of the names of
-files that have changed since the last backup. It also handles files that are
-removed, allowing for correct incremental backups.
+rdup itself does not backup anything; it only prints a list of the names
+of files that have changed since the last backup. It also handles files
+that are removed, allowing for correct incremental backups.
-An example script named rdup-simple is included to show how to implement a
-simple snapshot-style backup strategy.
+An example script named rdup-simple is included to show how to implement
+a simple snapshot-style backup strategy.
-WWW: http://miek.nl/projects/rdup
+WWW: http://miek.nl/projects/rdup/
More information about the svn-ports-head
mailing list