From owner-svn-ports-head@FreeBSD.ORG Sat Jul 27 17:08:57 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 1510BDB6; Sat, 27 Jul 2013 17:08:57 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 020482CE9; Sat, 27 Jul 2013 17:08:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r6RH8uWu056820; Sat, 27 Jul 2013 17:08:56 GMT (envelope-from danfe@svn.freebsd.org) Received: (from danfe@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r6RH8uOZ056817; Sat, 27 Jul 2013 17:08:56 GMT (envelope-from danfe@svn.freebsd.org) Message-Id: <201307271708.r6RH8uOZ056817@svn.freebsd.org> From: Alexey Dokuchaev Date: Sat, 27 Jul 2013 17:08:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r323798 - in head/sysutils/rdup: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Jul 2013 17:08:57 -0000 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@comcast.net +# Created by: Charlie Kester # $FreeBSD$ PORTNAME= rdup @@ -8,23 +8,22 @@ CATEGORIES= sysutils MASTER_SITES= http://miek.nl/projects/rdup/ MAINTAINER= rm@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/