Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

5
sysutils/rename/DESCR Normal file
View File

@@ -0,0 +1,5 @@
Rename is a command-line rename tool. It can substitute, lowcase,
upcase large numbers of file names, or change their ownerships.
This is a quick and powerful tool written in C with extended regular
expression support for searching and substituting pattern strings
in filenames.

23
sysutils/rename/Makefile Normal file
View File

@@ -0,0 +1,23 @@
# $NetBSD: Makefile,v 1.3 2012/10/23 19:51:21 asau Exp $
DISTNAME= rename-1.3
PKGREVISION= 2
CATEGORIES= sysutils
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=rename/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://rename.sourceforge.net/
COMMENT= Rename recursively with regex patterns
USE_TOOLS+= gmake
GNU_CONFIGURE= yes
BUILDLINK_TRANSFORM+= opt:-O3:${CFLAGS}
do-install:
${INSTALL_PROGRAM_DIR} ${DESTDIR}${PREFIX}/bin && \
${INSTALL_MAN_DIR} ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1 && \
${INSTALL_PROGRAM} ${WRKSRC}/rename ${DESTDIR}${PREFIX}/bin && \
${INSTALL_MAN} ${WRKSRC}/rename.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
.include "../../mk/bsd.pkg.mk"

3
sysutils/rename/PLIST Normal file
View File

@@ -0,0 +1,3 @@
@comment $NetBSD: PLIST,v 1.1.1.1 2007/11/05 15:56:34 rillig Exp $
bin/rename
man/man1/rename.1

7
sysutils/rename/distinfo Normal file
View File

@@ -0,0 +1,7 @@
$NetBSD: distinfo,v 1.2 2011/09/10 16:35:04 abs Exp $
SHA1 (rename-1.3.tar.gz) = 8d835e628aeb1f71816e092c0de57daf2519f43a
RMD160 (rename-1.3.tar.gz) = 56bd0ebaabbf9aae1fb93a12ca1cf9fccee5c5ab
Size (rename-1.3.tar.gz) = 83854 bytes
SHA1 (patch-aa) = 5a287999d712b540964de5f447194c00160f8805
SHA1 (patch-rename.c) = 983c48ff5f1f5d059bcaead62a79b34f521dc488

View File

@@ -0,0 +1,15 @@
$NetBSD: patch-aa,v 1.1.1.1 2007/11/05 15:56:34 rillig Exp $
--- Makefile.in.orig 2002-05-18 23:28:34.000000000 -0400
+++ Makefile.in 2007-11-04 19:42:05.000000000 -0500
@@ -30,8 +30,8 @@
rm -f core rename *.o config.status config.cache config.h config.log Makefile
install:
- install -o root -g root -m 0755 -s rename $(BINDIR)
- install -o root -g root -m 0644 rename.1 $(MANDIR)
+ ${BSD_INSTALL_PROGRAM} rename $(BINDIR)
+ ${BSD_INSTALL_MAN} rename.1 $(MANDIR)
rename.o: rename.c rename.h
regex.o: regex.c regex.h

View File

@@ -0,0 +1,13 @@
$NetBSD: patch-rename.c,v 1.1 2011/09/10 16:35:04 abs Exp $
--- rename.c.orig 2002-05-20 15:50:50.000000000 +0000
+++ rename.c
@@ -65,7 +65,7 @@
#if HAVE_REGEX_H
#include <regex.h>
-#elif
+#else
#include "regex.h"
#endif