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

8
devel/cvsclone/DESCR Normal file
View File

@@ -0,0 +1,8 @@
Utility to clone CVS repositories over the pserver interface. Works
for anonymous access.
FEATURES
- reads $HOME/.cvspass
- can clone corrupt repositories: writes ,v files directly, does not
need rcs. (For example, ccvs module has archives that go backwards
in time.)

30
devel/cvsclone/Makefile Normal file
View File

@@ -0,0 +1,30 @@
# $NetBSD: Makefile,v 1.3 2012/10/31 11:16:50 asau Exp $
#
DISTNAME= cvsclone
PKGNAME= cvsclone-0.00
CATEGORIES= devel scm
MASTER_SITES= http://samba.org/ftp/tridge/rtc/
EXTRACT_SUFX= .l
MAINTAINER= pkgsrc-users@NetBSD.org
#HOMEPAGE= http://samba.org/ftp/tridge/rtc/
COMMENT= Clone a CVS repository using the :pserver: access method
DIST_SUBDIR= ${PKGNAME_NOREV}
INSTALLATION_DIRS= bin
WRKSRC= ${WRKDIR}
USE_TOOLS+= lex
do-build:
cd ${WRKSRC} && \
${LEX} cvsclone.l && \
${CC} ${CFLAGS} lex.yy.c -o cvsclone
cd ${WRKSRC} && ${HEAD} -88 cvsclone.l > README.txt
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/cvsclone ${DESTDIR}${PREFIX}/bin
${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/doc/cvsclone
${INSTALL_DATA} ${WRKSRC}/README.txt ${DESTDIR}${PREFIX}/share/doc/cvsclone
.include "../../mk/bsd.pkg.mk"

3
devel/cvsclone/PLIST Normal file
View File

@@ -0,0 +1,3 @@
@comment $NetBSD: PLIST,v 1.2 2009/06/14 17:48:39 joerg Exp $
bin/cvsclone
share/doc/cvsclone/README.txt

6
devel/cvsclone/distinfo Normal file
View File

@@ -0,0 +1,6 @@
$NetBSD: distinfo,v 1.1.1.1 2008/03/12 10:16:05 wiz Exp $
SHA1 (cvsclone-0.00/cvsclone.l) = f0886e5b028df2b863aeb11e08ece4031626a25b
RMD160 (cvsclone-0.00/cvsclone.l) = b0fa4c32731e49f986c67e9639ba1fdd16149c2c
Size (cvsclone-0.00/cvsclone.l) = 33927 bytes
SHA1 (patch-aa) = 390251a65275977b58fb356f858d0c2244e82ec8

View File

@@ -0,0 +1,13 @@
$NetBSD: patch-aa,v 1.1.1.1 2008/03/12 10:16:05 wiz Exp $
--- cvsclone.l.orig 2006-03-30 14:12:28.000000000 +0200
+++ cvsclone.l
@@ -92,6 +92,8 @@
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/socket.h>
+#include <netinet/in.h>
+/* #include <arpa/nameser.h> */
#include <netdb.h>
#include <resolv.h>
#include <unistd.h>