mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
d93bc16288
ODS-2-READER reads files VMS Files-11 (ODS-2) file systems. Features: - Copies files from VMS (ODS-2) file systems. - Files may be copied to disk or to stdout. - Supports "text" and "image" transfer modes. - Produces directory listings for VMS file systems. WWW: http://vms.process.com/scripts/fileserv/fileserv.com?ODS-2-READER PR: ports/92125 Submitted by: Jeffrey H. Johnson <CPE1704TKS@bellsouth.net>
32 lines
758 B
Makefile
32 lines
758 B
Makefile
# New ports collection makefile for: ods2reader
|
|
# Date created: 21 Jan 2006
|
|
# Whom: Jeffrey H. Johnson <CPE1704TKS@bellsouth.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ods2reader
|
|
PORTVERSION= 19930601
|
|
CATEGORIES= emulators sysutils
|
|
MASTER_SITES= http://www.vsm.com.au/ftp/KITS/ \
|
|
http://vms.process.com/ftp/vms-freeware/fileserv/ \
|
|
http://web.infoave.net/~anonymous/VMS/
|
|
DISTNAME= ODS-2-READER
|
|
EXTRACT_SUFX= .ZIP
|
|
|
|
MAINTAINER= CPE1704TKS@bellsouth.net
|
|
COMMENT= Copies files from VMS Files-11 (ODS2) file systems
|
|
|
|
USE_ZIP= yes
|
|
EXTRACT_BEFORE_ARGS= -qoa
|
|
NO_WRKSUBDIR= yes
|
|
PLIST_FILES= bin/ods2reader
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && ${CC} ${CFLAGS} -o ods2reader ods-2-reader.c
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/ods2reader ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|