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

12
sysutils/bchunk/DESCR Normal file
View File

@@ -0,0 +1,12 @@
binchunker converts a CD image in a ".bin / .cue" format (sometimes
".raw / .cue") to a set of .iso and .cdr tracks.
The bin/cue format is used by some non-Unix cd-writing software, but is
not supported on most other cd-writing programs.
The .iso track contains an ISO file system, which can be vnconfiged and
mounted, or written on a CD-R using cdrecord.
The .cdr tracks are in the native CD audio format. They can be either
written on a CD-R using cdrecord -audio, or converted to WAV (or any
other sound format for that matter) using sox.

9
sysutils/bchunk/MESSAGE Normal file
View File

@@ -0,0 +1,9 @@
===========================================================================
$NetBSD: MESSAGE,v 1.2 2002/09/24 12:30:36 wiz Exp $
It is advisable that you edit the .cue file to either MODE2/2352/2048 or
MODE2/2352/2324 depending on whether you want an ISO filesystem or a VCD,
respectively. The format itself does not contain this feature and in an
ambiguous case it can only guess.
===========================================================================

19
sysutils/bchunk/Makefile Normal file
View File

@@ -0,0 +1,19 @@
# $NetBSD: Makefile,v 1.13 2012/12/12 10:44:11 wiz Exp $
DISTNAME= bchunk-1.2.0
CATEGORIES= sysutils
MASTER_SITES= http://he.fi/bchunk/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://he.fi/bchunk/
COMMENT= ".bin/.cue" CD image converter
MAKE_FLAGS+= CC=${CC:Q} LD=${CC:Q} CFLAGS=${CFLAGS:M*:Q}
INSTALLATION_DIRS= bin ${PKGMANDIR}/man1
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/bchunk ${DESTDIR}${PREFIX}/bin/bchunk
${INSTALL_MAN} ${WRKSRC}/bchunk.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/bchunk.1
.include "../../mk/bsd.pkg.mk"

3
sysutils/bchunk/PLIST Normal file
View File

@@ -0,0 +1,3 @@
@comment $NetBSD: PLIST,v 1.3 2005/10/23 20:22:27 rillig Exp $
bin/bchunk
man/man1/bchunk.1

6
sysutils/bchunk/distinfo Normal file
View File

@@ -0,0 +1,6 @@
$NetBSD: distinfo,v 1.7 2007/11/16 12:03:42 dillo Exp $
SHA1 (bchunk-1.2.0.tar.gz) = a328e4665eb5e51df63d8d27d1d75ecc74bdef9e
RMD160 (bchunk-1.2.0.tar.gz) = 81dbbbd0162cbfde54eced4b0410044b72d92cb0
Size (bchunk-1.2.0.tar.gz) = 15078 bytes
SHA1 (patch-ab) = 19c0e44ab1f54ac2c0645e59a025e638b72a39fb

View File

@@ -0,0 +1,21 @@
$NetBSD: patch-ab,v 1.3 2007/11/16 12:03:42 dillo Exp $
--- bchunk.c.orig 2004-06-29 22:42:33.000000000 +0200
+++ bchunk.c
@@ -470,13 +470,15 @@ int main(int argc, char **argv)
*t = '\0';
t++;
idx = atoi(p);
+ if (idx != 1)
+ continue;
printf(" %s %s", p, t);
track->startsect = time2frames(t);
track->start = track->startsect * SECTLEN;
if (verbose)
printf(" (startsect %ld ofs %ld)", track->startsect, track->start);
if ((prevtrack) && (prevtrack->stopsect < 0)) {
- prevtrack->stopsect = track->startsect;
+ prevtrack->stopsect = track->startsect - 1;
prevtrack->stop = track->start - 1;
}
}