1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-13 07:34:50 +00:00
freebsd-ports/databases/rdb/Makefile
Jimmy Olgeni 76c7f8fbe6 Remove indefinite articles and trailing periods from COMMENT, plus
minor COMMENT typos and surrounding whitespace fixes. Categories D-F.

CR:		D196
Approved by:	portmgr (bapt)
2014-06-10 07:39:01 +00:00

38 lines
945 B
Makefile

# Created by: Abel Chow <abel_chow@yahoo.com>
# $FreeBSD$
PORTNAME= rdb
PORTVERSION= 2.6d
CATEGORIES= databases
MASTER_SITES= ftp://ftp.sunet.se/pub/unix/databases/flat-file/RDB/
DISTNAME= RDB-${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= Fast, portable, relational database management system
WRKSRC= ${WRKDIR}/rdb
USES= perl5
BINFILES= column compute dataent etbl headchg jointbl lst2tbl \
mergetbl mktbl ptbl rdb rdbt repair reporttbl row search \
sorttbl subtotal summ tbl2lst uniqtbl valid
DOCFILES= RDB.pln.noM.gz RDB.ps.gz rdbi.doc
OPTIONS_DEFINE= DOCS
do-build:
cd ${WRKSRC}; \
${PERL} -pi -e 's|^\#\! /usr/bin/perl|\#\!${PERL}|g' ${BINFILES}
do-install:
.for binfile in ${BINFILES}
${INSTALL_SCRIPT} ${WRKSRC}/${binfile} ${STAGEDIR}${PREFIX}/bin
.endfor
@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for docfile in ${DOCFILES}
@${INSTALL_DATA} ${WRKSRC}/doc/${docfile} ${STAGEDIR}${DOCSDIR}
.endfor
.include <bsd.port.mk>