diff options
author | Brian Somers <brian@FreeBSD.org> | 2001-06-10 22:04:44 +0000 |
---|---|---|
committer | Brian Somers <brian@FreeBSD.org> | 2001-06-10 22:04:44 +0000 |
commit | 4a166800d8d88c6d18b592ee165f6fd5d99600fb (patch) | |
tree | 5c3946d6385be0bfac3ccb5a23bb9256ee05d4b7 /sysutils/dvdtape | |
parent | 61b66dd70b81a0bf6dd621fdac6468857322253b (diff) | |
download | ports-4a166800d8d88c6d18b592ee165f6fd5d99600fb.tar.gz ports-4a166800d8d88c6d18b592ee165f6fd5d99600fb.zip |
Notes
Diffstat (limited to 'sysutils/dvdtape')
-rw-r--r-- | sysutils/dvdtape/Makefile | 1 | ||||
-rw-r--r-- | sysutils/dvdtape/files/patch-aa | 4 | ||||
-rw-r--r-- | sysutils/dvdtape/files/patch-ac | 77 |
3 files changed, 80 insertions, 2 deletions
diff --git a/sysutils/dvdtape/Makefile b/sysutils/dvdtape/Makefile index a632f79d5f6d..48c11d258dc6 100644 --- a/sysutils/dvdtape/Makefile +++ b/sysutils/dvdtape/Makefile @@ -7,6 +7,7 @@ PORTNAME= dvdtape PORTVERSION= 1.4 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= ftp://ftp.Awfulhak.org/pub/dvdtape/ \ http://people.FreeBSD.org/~brian/dvdtape/ \ diff --git a/sysutils/dvdtape/files/patch-aa b/sysutils/dvdtape/files/patch-aa index e5eeaf7e4bab..ec7c07bb3240 100644 --- a/sysutils/dvdtape/files/patch-aa +++ b/sysutils/dvdtape/files/patch-aa @@ -1,5 +1,5 @@ --- Makefile.orig Wed Nov 10 00:01:10 1999 -+++ Makefile Tue Apr 3 19:25:13 2001 ++++ Makefile Sun Jun 10 18:30:24 2001 @@ -1,8 +1,10 @@ -prefix=/usr -BINDIR=${prefix}/bin @@ -9,7 +9,7 @@ +BINDIR= ${PREFIX}/bin +MANDIR= ${PREFIX}/man +CC ?=gcc -+CFLAGS= -O2 -D_FILE_OFFSET_BITS=64 -Wall -I${LOCALBASE}/include ++CFLAGS= -O -D_FILE_OFFSET_BITS=64 -Wall -I${LOCALBASE}/include +LD =${CC} +LDFLAGS=-L${LOCALBASE}/lib +LIBS= -lgnugetopt diff --git a/sysutils/dvdtape/files/patch-ac b/sysutils/dvdtape/files/patch-ac new file mode 100644 index 000000000000..a2eedd451619 --- /dev/null +++ b/sysutils/dvdtape/files/patch-ac @@ -0,0 +1,77 @@ +--- dvdtape.c.orig Wed Aug 2 08:58:21 2000 ++++ dvdtape.c Sun Jun 10 22:27:29 2001 +@@ -153,8 +153,8 @@ + fprintf (stderr, + "Disc diameter must be \"8cm\" or \"12cm\".\n"); + exit(1); +- break; + } ++ break; + case 'l': layer = atoi(optarg); break; + case 'L': + layers = atoi(optarg); +@@ -184,6 +184,7 @@ + "Read out speed must be 2, 5 or 10 for 2.52, 5.04, or 10.08 megabits/second.\n"); + exit(1); + } ++ break; + case 's': side = atoi(optarg); break; + case 'S': + sides = atoi(optarg); +@@ -335,7 +336,7 @@ + static void + write_vol_label(int outfd) { + char buf[81]; +- sprintf(buf, ++ snprintf(buf, sizeof(buf), + "VOL1" /* Label ID */ + "REEL%-2d" /* Reel ID */ + " " /* Accessibility */ +@@ -351,7 +352,7 @@ + static void + write_hdr1(int outfd, char *labelid, char *fileid, int block_count) { + char buf[81]; +- sprintf(buf, ++ snprintf(buf, sizeof(buf), + "%-4s" /* Label ID */ + "%-17s" /* File ID */ + "DVD " /* File set ID, 6 bytes */ +@@ -394,7 +395,7 @@ + static void + write_hdr2(int outfd, char *labelid, int blocksize, int recordsize) { + char buf[81]; +- sprintf(buf, ++ snprintf(buf, sizeof(buf), + "%-4s" /* Label ID */ + "F" /* Record format, "F" = fixed */ + "%05d" /* block size */ +@@ -415,9 +416,9 @@ + if (strlen(usertext) == 0) + strcpy(txtsize, " "); + else +- sprintf (txtsize, "%02d", strlen(usertext)); ++ snprintf (txtsize, sizeof(txtsize), "%02d", strlen(usertext)); + +- sprintf(buf, ++ snprintf(buf, sizeof(buf), + "DDP 2.00" /* DDP level */ + " " /* UPC, reserved, 13 bytes */ + " " /* MSS, Map Stream Start, 8 bytes */ +@@ -456,7 +457,7 @@ + static void + write_ddpms(int outfd, char *streamtype, int start, int len, char *filename) { + char buf[129]; +- sprintf(buf, ++ snprintf(buf, sizeof(buf), + "VVVM" /* MPV Map Packet Valid */ + "%-2s" /* DST Data Stream Type + "D2" = control +@@ -657,7 +658,7 @@ + struct tm *tm; + time(&now); + tm = localtime(&now); +- sprintf (time_string, "%c%02d%03d", ++ snprintf (time_string, sizeof(time_string), "%c%02d%03d", + tm->tm_year >= 100 ? '0' : ' ', + tm->tm_year % 100, + tm->tm_yday + 1 /* E.g., Write Jan 1 as day 1, not day 0.*/ |