pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/devel/cvsup-bin Reimport cvsup as cvsup-bin.
details: https://anonhg.NetBSD.org/pkgsrc/rev/89f5a17d8264
branches: trunk
changeset: 465769:89f5a17d8264
user: xtraeme <xtraeme%pkgsrc.org@localhost>
date: Mon Jan 05 23:50:20 2004 +0000
description:
Reimport cvsup as cvsup-bin.
diffstat:
devel/cvsup-bin/DESCR | 4 +
devel/cvsup-bin/MESSAGE.NetBSD | 7 ++
devel/cvsup-bin/Makefile | 41 +++++++++++++++
devel/cvsup-bin/PLIST | 12 ++++
devel/cvsup-bin/distinfo | 4 +
devel/cvsup-bin/files/supfile-cvsup.jp.netbsd.org | 60 +++++++++++++++++++++++
devel/cvsup-bin/files/supfile-cvsup.no.netbsd.org | 34 +++++++++++++
7 files changed, 162 insertions(+), 0 deletions(-)
diffs (190 lines):
diff -r afdd95c6cbd1 -r 89f5a17d8264 devel/cvsup-bin/DESCR
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/cvsup-bin/DESCR Mon Jan 05 23:50:20 2004 +0000
@@ -0,0 +1,4 @@
+cvsup server and non-GUI client.
+
+the binary is for NetBSD 1.5/i386/ELF systems, and compiled by
+Markus Kurek <Markus.Kurek%t-online.de@localhost>.
diff -r afdd95c6cbd1 -r 89f5a17d8264 devel/cvsup-bin/MESSAGE.NetBSD
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/cvsup-bin/MESSAGE.NetBSD Mon Jan 05 23:50:20 2004 +0000
@@ -0,0 +1,7 @@
+===========================================================================
+$NetBSD: MESSAGE.NetBSD,v 1.1.1.1 2004/01/05 23:50:20 xtraeme Exp $
+
+IMPORTANT: Make sure your kernel has COMPAT_43, COMPAT_13, and COMPAT_14
+defined.
+
+===========================================================================
diff -r afdd95c6cbd1 -r 89f5a17d8264 devel/cvsup-bin/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/cvsup-bin/Makefile Mon Jan 05 23:50:20 2004 +0000
@@ -0,0 +1,41 @@
+# $NetBSD: Makefile,v 1.1.1.1 2004/01/05 23:50:20 xtraeme Exp $
+
+DISTNAME= cvsup-static-16.1.h
+PKGNAME= ${DISTNAME:C/static/bin/}
+WRKSRC= ${WRKDIR}
+CATEGORIES= devel
+MASTER_SITES= http://motoyuki.bsdclub.org/data/NetBSD/CVSup/i386/
+EXTRACT_SUFX= .tgz
+
+MAINTAINER= tech-pkg%NetBSD.org@localhost
+HOMEPAGE= http://people.freebsd.org/~jdp/
+COMMENT= cvsup daemon and client
+
+NO_CONFIGURE= yes
+NO_BUILD= yes
+ONLY_FOR_PLATFORM= NetBSD-1.[5-9]*-i386
+DIST_SUBDIR= cvsup-${MACHINE_ARCH}-${OS_VERSION:C/(...).*/\1/}
+
+CONFLICTS= cvsup-[0-9]* cvsup-gui-[0-9]*
+
+do-install:
+ for i in cvpasswd cvsup ; do \
+ ${INSTALL_PROGRAM} ${WRKSRC}/bin/$$i ${PREFIX}/bin; \
+ done
+ for i in cvsupd; do \
+ ${INSTALL_PROGRAM} ${WRKSRC}/sbin/$$i ${PREFIX}/sbin; \
+ done
+ for i in cvpasswd.1 cvsup.1; do \
+ ${INSTALL_MAN} ${WRKSRC}/man/man1/$$i ${PREFIX}/man/man1; \
+ done
+ for i in cvsupd.8; do \
+ ${INSTALL_MAN} ${WRKSRC}/man/man8/$$i ${PREFIX}/man/man8; \
+ done
+ ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/cvsup
+ ${INSTALL_DATA} ${WRKSRC}/share/doc/cvsup/License \
+ ${PREFIX}/share/doc/cvsup
+ ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/cvsup
+ ${INSTALL_DATA} ${FILESDIR}/supfile* \
+ ${PREFIX}/share/examples/cvsup
+
+.include "../../mk/bsd.pkg.mk"
diff -r afdd95c6cbd1 -r 89f5a17d8264 devel/cvsup-bin/PLIST
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/cvsup-bin/PLIST Mon Jan 05 23:50:20 2004 +0000
@@ -0,0 +1,12 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2004/01/05 23:50:20 xtraeme Exp $
+bin/cvpasswd
+bin/cvsup
+sbin/cvsupd
+man/man1/cvpasswd.1
+man/man1/cvsup.1
+man/man8/cvsupd.8
+share/examples/cvsup/supfile-cvsup.no.netbsd.org
+share/examples/cvsup/supfile-cvsup.jp.netbsd.org
+share/doc/cvsup/License
+@dirrm share/examples/cvsup
+@dirrm share/doc/cvsup
diff -r afdd95c6cbd1 -r 89f5a17d8264 devel/cvsup-bin/distinfo
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/cvsup-bin/distinfo Mon Jan 05 23:50:20 2004 +0000
@@ -0,0 +1,4 @@
+$NetBSD: distinfo,v 1.1.1.1 2004/01/05 23:50:20 xtraeme Exp $
+
+SHA1 (cvsup-i386-1.6/cvsup-static-16.1.h.tgz) = 8a9cfd3e5e24e8bdc7c174c5bab0eb728aad1837
+Size (cvsup-i386-1.6/cvsup-static-16.1.h.tgz) = 1291666 bytes
diff -r afdd95c6cbd1 -r 89f5a17d8264 devel/cvsup-bin/files/supfile-cvsup.jp.netbsd.org
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/cvsup-bin/files/supfile-cvsup.jp.netbsd.org Mon Jan 05 23:50:20 2004 +0000
@@ -0,0 +1,60 @@
+#
+# Example cvsup config file provided by
+# Motoyuki Konno <motoyuki%bsdclub.org@localhost> (cvsup.jp.netbsd.org maintainer)
+#
+
+# This file can be used to obtain the checked-out NetBSD source files
+
+#*default tag=. # Comment out this line to obtain
+ # the checkout-out NetBSD source files.
+ # Replace the ``.'' with a cvs tag
+ # to get other NetBSD releases.
+*default release=cvs
+*default delete use-rel-suffix
+*default umask=022
+*default host=cvsup.jp.NetBSD.org # Machine to connect to
+*default base=/var/cvsup/ # Location to put the sources
+*default prefix=/usr/cvsup # Where to put the sup subdirectory
+
+*default compress # Use this unless your network link
+ # is a T1 or faster
+
+# You can get everything using the ``netbsd'' collection.
+netbsd
+
+# Alternatively, use following collections to get one or more
+# of the partial collections by uncommenting them below.
+
+#netbsd-base # CVSROOT and misc
+#
+#netbsd-src # All of src tree
+#netbsd-src-base # src/[A-Z]* and misc.
+#netbsd-src-bin # src/bin
+#netbsd-src-crypto # src/crypto
+#netbsd-src-dist # src/dist
+#netbsd-src-distrib # src/distrib
+#netbsd-src-doc # src/doc
+#netbsd-src-etc # src/etc
+#netbsd-src-games # src/games
+#netbsd-src-gnu # src/gnu
+#netbsd-src-include # src/include
+#netbsd-src-lib # src/lib
+#netbsd-src-libexec # src/libexec
+#netbsd-src-regress # src/regress
+#netbsd-src-rescue # src/rescue
+#netbsd-src-sbin # src/sbin
+#netbsd-src-share # src/share
+#netbsd-src-sys # src/sys
+#netbsd-src-tools # src/tools
+#netbsd-src-usrbin # src/usr.bin
+#netbsd-src-usrsbin # src/usr.sbin
+#
+#netbsd-htdocs # htdocs
+#netbsd-othersrc # othersrc
+#netbsd-pkgsrc # pkgsrc
+#netbsd-xsrc # All of xsrc tree
+#netbsd-xsrc-3 # xsrc tree for XFree86 3.X
+#netbsd-xsrc-4 # xsrc tree for XFree86 4.X
+#
+#netbsd-distrib release=self # server's own config files
+#
diff -r afdd95c6cbd1 -r 89f5a17d8264 devel/cvsup-bin/files/supfile-cvsup.no.netbsd.org
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/cvsup-bin/files/supfile-cvsup.no.netbsd.org Mon Jan 05 23:50:20 2004 +0000
@@ -0,0 +1,34 @@
+#
+# Example cvsup config file provided by
+# Onno van der Linden <o.vd.linden%quicknet.nl@localhost>
+#
+
+
+# This file can be used to obtain the checked-out NetBSD source files
+
+*default tag=. # Get the current files. Replace the
+ # ``.'' with a cvs tag to get other
+ # NetBSD releases.
+*default release=cvs
+*default delete use-rel-suffix
+*default umask=022
+*default host=cvsup.no.NetBSD.org # Machine to connect to
+*default base=/var/cvsup/ # Location to put the sources
+*default prefix=/usr/cvsup # Where to put the sup subdirectory
+
+*default compress # Use this unless your network link
+ # is a T1 or faster
+
+# You can get everything using the ``netbsd'' collection.
+# netbsd-doc
+
+# Alternatively, comment out the ``netbsd'' collection and just get one or
+# more of the partial collections by uncommenting them below.
+
+netbsd-basesrc
+netbsd-doc prefix=/var/cvsup
+netbsd-gnusrc
+netbsd-sharesrc
+netbsd-syssrc
+netbsd-pkgsrc
+# netbsd-xsrc
Home |
Main Index |
Thread Index |
Old Index