2ef2166869
- Support LOCALBASE peoperly - Support PLIST_FILES - Strip binaries PR: ports/161613 Submitted by: KATO Tsuguru <tkato432@yahoo.com>
30 lines
664 B
Makefile
30 lines
664 B
Makefile
# New ports collection makefile for: dbf2mysql
|
|
# Date created: 02 October 1999
|
|
# Whom: jedgar@fxp.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= dbf2mysql
|
|
PORTVERSION= 1.14
|
|
PORTREVISION= 5
|
|
CATEGORIES= databases
|
|
MASTER_SITES= MYSQL/Contrib/Old-Versions
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Programs to convert .dbf files to MySQL tables and vice versa
|
|
|
|
USE_MYSQL= yes
|
|
|
|
PORTDOCS= README
|
|
PLIST_FILES= bin/dbf2mysql bin/mysql2dbf
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/dbf2mysql ${PREFIX}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/mysql2dbf ${PREFIX}/bin
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|