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

3
devel/cvsgraph/DESCR Normal file
View File

@@ -0,0 +1,3 @@
CvsGraph is a utility to make a graphical representation of all
revisions and branches of a file in a CVS/RCS repository. It has
been inspired by the 'graph' option in WinCVS.

47
devel/cvsgraph/Makefile Normal file
View File

@@ -0,0 +1,47 @@
# $NetBSD: Makefile,v 1.42 2013/06/04 22:15:50 tron Exp $
#
DISTNAME= cvsgraph-1.6.1
PKGREVISION= 9
CATEGORIES= devel scm
MASTER_SITES= http://www.akhphd.au.dk/~bertho/cvsgraph/release/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.akhphd.au.dk/~bertho/cvsgraph/
COMMENT= Graphically represents CVS/RCS branches and file revisions
USE_TOOLS+= bison lex
GNU_CONFIGURE= YES
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q}
DOCDIR= ${PREFIX}/share/doc/${PKGBASE}
EGDIR= ${PREFIX}/share/examples/${PKGBASE}
CONF_FILES= ${EGDIR}/cvsgraph.conf ${PKG_SYSCONFDIR}/cvsgraph.conf
PLIST_SUBST+= PKGBASE=${PKGBASE:Q}
BUILD_TARGET= cvsgraph
SUBST_CLASSES+= man
SUBST_STAGE.man= pre-install
SUBST_FILES.man= cvsgraph.1
SUBST_SED.man= -e "s|/usr/local/etc|${PKG_SYSCONFDIR}|g"
SUBST_MESSAGE.man= Fixing man page paths.
INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 ${PKGMANDIR}/man5
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/cvsgraph ${DESTDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/cvsgraph.1 \
${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/
${INSTALL_MAN} ${WRKSRC}/cvsgraph.conf.5 \
${DESTDIR}${PREFIX}/${PKGMANDIR}/man5
${INSTALL_DATA_DIR} ${DESTDIR}${DOCDIR}
${INSTALL_DATA} ${WRKSRC}/README ${DESTDIR}${DOCDIR}
${INSTALL_DATA} ${WRKSRC}/LICENSE ${DESTDIR}${DOCDIR}
${INSTALL_DATA_DIR} ${DESTDIR}${EGDIR}
${INSTALL_DATA} ${WRKSRC}/cvsgraph.conf ${DESTDIR}${EGDIR}
.include "../../graphics/gd/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"

7
devel/cvsgraph/PLIST Normal file
View File

@@ -0,0 +1,7 @@
@comment $NetBSD: PLIST,v 1.3 2009/06/14 17:48:39 joerg Exp $
bin/cvsgraph
man/man1/cvsgraph.1
man/man5/cvsgraph.conf.5
share/doc/${PKGBASE}/LICENSE
share/doc/${PKGBASE}/README
share/examples/${PKGBASE}/cvsgraph.conf

6
devel/cvsgraph/distinfo Normal file
View File

@@ -0,0 +1,6 @@
$NetBSD: distinfo,v 1.7 2007/04/09 09:34:57 adrianp Exp $
SHA1 (cvsgraph-1.6.1.tar.gz) = ca5011537e22d6399eeb4d44c9ba0830e0f240a6
RMD160 (cvsgraph-1.6.1.tar.gz) = b4fa44c6d41a28d8e2e8d1f505dc117d0f59d286
Size (cvsgraph-1.6.1.tar.gz) = 114337 bytes
SHA1 (patch-aa) = c2020ce2578856f20b47e81e996ce3020f6a4a1a

View File

@@ -0,0 +1,21 @@
$NetBSD: patch-aa,v 1.2 2004/08/10 15:10:50 adrianp Exp $
--- Makefile.in.orig Fri Aug 6 18:30:24 2004
+++ Makefile.in Fri Aug 6 18:31:18 2004
@@ -10,6 +10,7 @@
LIBS = @LIBS@
CFLAGS = @CFLAGS@ -DETCDIR=\"$(ETCDIR)\" -DINTTYPE="@INTTYPE@"
+LDFLAGS = @LDFLAGS@
YACCFLAGS= -t
LEXFLAGS= @LEXFLAGS@ -d #-b
@@ -34,7 +35,7 @@
all: $(TARGET)
$(TARGET): $(COBJS) $(GENOBJS)
- $(CC) $(CFLAGS) -o $(TARGET) $(COBJS) $(GENOBJS) $(LIBS)
+ $(CC) $(CFLAGS) ${LDFLAGS} -o $(TARGET) $(COBJS) $(GENOBJS) $(LIBS)
cvsgraph.o: cvsgraph.c config.h cvsgraph.h utils.h readconf.h rcs.h
utils.o: utils.c utils.h readconf.h