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

9
sysutils/hfsutils/DESCR Normal file
View File

@@ -0,0 +1,9 @@
These tools allow you to access Macintosh disks without mounting them.
You can copy from or to BSD files, list directories, or run various
other file / directory modification commands. The command naming is
similar to that used by the mtools command (which is similar to MS-DOS
command names), except that the names begin with an 'h'.
This package installs only the traditional "Command Line Tools" from
Robert Leslie's HFS Utilities. The advanced Tcl shell and Tk GUI are
packaged independently, as the sysutils/xhfs package.

View File

@@ -0,0 +1,24 @@
# $NetBSD: Makefile,v 1.11 2012/10/23 19:51:07 asau Exp $
#
DISTNAME= hfsutils-3.2.6
PKGREVISION= 1
CATEGORIES= sysutils
MASTER_SITES= ftp://ftp.mars.org/pub/hfs/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.mars.org/home/rob/proj/hfs/
COMMENT= Command Line Interface HFS (not HFS+) disk access tools
GNU_CONFIGURE= yes
CPPFLAGS+= -I${LOCALBASE}/include/libhfs
BUILD_TARGET= all_cli
INSTALL_TARGET= install_cli
INSTALL_MAKE_FLAGS+= BINDEST=${DESTDIR}${PREFIX}/bin \
MANDEST=${DESTDIR}${PREFIX}/${PKGMANDIR}
INSTALLATION_DIRS= bin ${PKGMANDIR}/man1
.include "../../devel/libhfs/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"

30
sysutils/hfsutils/PLIST Normal file
View File

@@ -0,0 +1,30 @@
@comment $NetBSD: PLIST,v 1.2 2005/04/05 10:43:31 wiz Exp $
bin/hattrib
bin/hcd
bin/hcopy
bin/hdel
bin/hdir
bin/hformat
bin/hls
bin/hmkdir
bin/hmount
bin/hpwd
bin/hrename
bin/hrmdir
bin/humount
bin/hvol
man/man1/hattrib.1
man/man1/hcd.1
man/man1/hcopy.1
man/man1/hdel.1
man/man1/hdir.1
man/man1/hformat.1
man/man1/hfsutils.1
man/man1/hls.1
man/man1/hmkdir.1
man/man1/hmount.1
man/man1/hpwd.1
man/man1/hrename.1
man/man1/hrmdir.1
man/man1/humount.1
man/man1/hvol.1

View File

@@ -0,0 +1,11 @@
$NetBSD: distinfo,v 1.4 2006/03/24 19:38:08 joerg Exp $
SHA1 (hfsutils-3.2.6.tar.gz) = 6d71dfb2c93c0d8082972d39f3f75ae53a438d5d
RMD160 (hfsutils-3.2.6.tar.gz) = a8b8c0c6556f3be2b701baab80b933dc6691a6ea
Size (hfsutils-3.2.6.tar.gz) = 207697 bytes
SHA1 (patch-aa) = bcd686f431220aafb994b4870974ae3157287b46
SHA1 (patch-ab) = 8439ad5500d9bb2d61b13ffcd0be88d05c394f6f
SHA1 (patch-ac) = 252462cd8f6a79b7b20823eabe331e01746fb5ce
SHA1 (patch-ad) = 31a06f3ea3ff915e4067815f644d6d94d6d66947
SHA1 (patch-ae) = 9d7ff81323f845194e8ae553d73938274a13ac20
SHA1 (patch-af) = 9db9e9c63d47452386bd3e14190333f123087668

View File

@@ -0,0 +1,38 @@
$NetBSD: patch-aa,v 1.1.1.1 1999/10/17 04:42:17 fredb Exp $
--- Makefile.in.orig Mon Aug 31 13:40:14 1998
+++ Makefile.in Fri Oct 15 18:51:56 1999
@@ -42,7 +42,7 @@
HARDLINK = ln -f
CC = @CC@
-INCLUDES = @CPPFLAGS@ -Ilibhfs @TCL_INCLUDES@ @TK_INCLUDES@
+INCLUDES = @CPPFLAGS@ @TCL_INCLUDES@ @TK_INCLUDES@
DEFINES = @DEFS@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
@@ -51,7 +51,7 @@
TKLIBS = @TK_LIB_SPEC@ @TCL_LIB_SPEC@ @TK_LIBS@
COPTS = @CFLAGS@
-LDOPTS = @LDFLAGS@ -Llibhfs
+LDOPTS = @LDFLAGS@
### END OF USER CUSTOMIZATION #################################################
@@ -67,11 +67,11 @@
TCLTARGETS = hfssh hfs
TKTARGETS = xhfs
-LIBHFS = libhfs/libhfs.a
-INCHFS = libhfs/hfs.h
+LIBHFS =
+INCHFS =
-LIBRSRC = librsrc/librsrc.a
-INCRSRC = librsrc/rsrc.h
+LIBRSRC =
+INCRSRC =
HFSUTIL = hfsutil
HFSCK = hfsck/hfsck

View File

@@ -0,0 +1,11 @@
$NetBSD: patch-ab,v 1.1 2006/03/24 19:38:08 joerg Exp $
--- hfsutil.h.orig 2006-03-24 19:09:05.000000000 +0000
+++ hfsutil.h
@@ -20,5 +20,5 @@
*/
-extern int errno;
+#include <errno.h>
# define ERROR(code, str) (hfs_error = (str), errno = (code))

View File

@@ -0,0 +1,13 @@
$NetBSD: patch-ac,v 1.1 2006/03/24 19:38:08 joerg Exp $
--- hcwd.c.orig 2006-03-24 19:09:35.000000000 +0000
+++ hcwd.c
@@ -43,8 +43,6 @@ static mountent *mounts = 0;
static int mtabsz = 0, nmounts = 0;
static int curvol = -1, dirty = 0;
-extern int errno;
-
/*
* NAME: addent()
* DESCRIPTION: insert mount entry into table

View File

@@ -0,0 +1,13 @@
$NetBSD: patch-ad,v 1.1 2006/03/24 19:38:08 joerg Exp $
--- binhex.c.orig 2006-03-24 19:16:23.000000000 +0000
+++ binhex.c
@@ -38,8 +38,6 @@ int dup(int);
const char *bh_error = "no error";
-extern int errno;
-
# define ERROR(code, str) (bh_error = (str), errno = (code))
static FILE *file; /* input/output file */

View File

@@ -0,0 +1,13 @@
$NetBSD: patch-ae,v 1.1 2006/03/24 19:38:08 joerg Exp $
--- copyin.c.orig 2006-03-24 19:19:27.000000000 +0000
+++ copyin.c
@@ -48,8 +48,6 @@ int dup(int);
const char *cpi_error = "no error";
-extern int errno;
-
# define ERROR(code, str) (cpi_error = (str), errno = (code))
# define MACB_BLOCKSZ 128

View File

@@ -0,0 +1,13 @@
$NetBSD: patch-af,v 1.1 2006/03/24 19:38:08 joerg Exp $
--- copyout.c.orig 2006-03-24 19:24:34.000000000 +0000
+++ copyout.c
@@ -49,8 +49,6 @@ int dup(int);
const char *cpo_error = "no error";
-extern int errno;
-
# define ERROR(code, str) (cpo_error = (str), errno = (code))
# define MACB_BLOCKSZ 128