diff options
author | tv <tv> | 2006-02-01 17:38:01 +0000 |
---|---|---|
committer | tv <tv> | 2006-02-01 17:38:01 +0000 |
commit | 9210a0ce8ec3d54f7dfedbaf03cd38f445b80440 (patch) | |
tree | 68377047391a7ac022fc05c8670785611808bcd2 /converters/cbmconvert/Makefile | |
parent | 7ad1ebfad5c0513ce7fe9fd4e0fc4f6c124c937f (diff) | |
download | pkgsrc-9210a0ce8ec3d54f7dfedbaf03cd38f445b80440.tar.gz |
Update to 2.1.2 at its new master site. Changes from docs:
Version 2.1.2:
Bug fixes; see ChangeLog for details
Version 2.1:
Added support for raw Commodore C2N tape archives. Renamed the
CP/M-related options to -m and -M, so that the C2N-related options can be
-c and -C.
Version 2.0.5:
Mikko Suonio provided patches for tolerating truncated T64 and Lynx
archives. His patches also handle single-file T64 archives that have
number of entries set to zero, and Lynx archives that have file names
starting with a space.
Version 2.0.5.1:
It was brought to my attention that Lynx 17 on the Commodore 64 and some
other utilities do not recognize the Lynx archives created by cbmconvert.
I slightly modified the magic cookie to fix the problem.
Diffstat (limited to 'converters/cbmconvert/Makefile')
-rw-r--r-- | converters/cbmconvert/Makefile | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/converters/cbmconvert/Makefile b/converters/cbmconvert/Makefile index 24abd8b8b82..df2f49c757c 100644 --- a/converters/cbmconvert/Makefile +++ b/converters/cbmconvert/Makefile @@ -1,23 +1,21 @@ -# $NetBSD: Makefile,v 1.14 2005/12/05 20:49:55 rillig Exp $ +# $NetBSD: Makefile,v 1.15 2006/02/01 17:38:01 tv Exp $ -DISTNAME= cbmconvert-2.0.5 +DISTNAME= cbmconvert-2.1.2 CATEGORIES= converters archivers -MASTER_SITES= ftp://ftp.funet.fi/pub/cbm/crossplatform/converters/unix/ +MASTER_SITES= ftp://ftp.zimmers.net/pub/cbm/crossplatform/converters/unix/ MAINTAINER= tech-pkg@NetBSD.org COMMENT= Converts files to and from various C64/C128/CBM formats -BUILD_TARGET= unix +MAKEFILE= Makefile.unix MAKE_FLAGS+= CFLAGS=${CFLAGS:M*:Q} -INSTALLATION_DIRS= bin +INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 share/doc/cbmconvert do-install: .for f in cbmconvert disk2zip zip2disk ${INSTALL_PROGRAM} ${WRKSRC}/${f} ${PREFIX}/bin/ + ${INSTALL_MAN} ${WRKSRC}/${f}.1 ${PREFIX}/${PKGMANDIR}/man1/ .endfor - ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/cbmconvert -.for f in README README.html - ${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/doc/cbmconvert/ -.endfor + ${INSTALL_DATA} ${WRKSRC}/cbmconvert.html ${PREFIX}/share/doc/cbmconvert/ .include "../../mk/bsd.pkg.mk" |