freebsd-ports/databases/wfb2sql/Makefile
Eitan Adler c59a3834c4 At the moment 1385 ports use BUILD_DEPENDS= ${RUN_DEPENDS} and 450
ports use BUILD_DEPENDS:= ${RUN_DEPENDS}. This patch fixes ports that are
currently broken. This is a temporary measure until we organically stop using
:= or someone(s) spend a lot of time changing all the ports over.

Explicit duplication > := > = and this just moves ports one step to the left

Approved by:	portmgr
2012-01-21 17:40:15 +00:00

41 lines
1.1 KiB
Makefile

# New ports collection makefile for: wfb2sql
# Date created: August 21st, 2003
# Whom: Sean Chittenden <seanc@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= wfb2sql
PORTVERSION= 0.6
PORTREVISION= 1
CATEGORIES= databases perl5
MASTER_SITES= SF
MAINTAINER= ports@FreeBSD.org
COMMENT= CIA World Fact Book to SQL Conversion Utility
BUILD_DEPENDS= ${SITE_PERL}/Config/General.pm:${PORTSDIR}/devel/p5-Config-General
RUN_DEPENDS:= ${BUILD_DEPENDS}
NO_BUILD= YES
USE_PERL5= YES
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/wfb2sql ${PREFIX}/bin/wfb2sql
@${ECHO} "bin/wfb2sql" >> ${TMPPLIST}
${MKDIR} ${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/wfb2sqlrc ${EXAMPLESDIR}/wfb2sqlrc
@${ECHO} "share/examples/${PORTNAME}/wfb2sqlrc" >> ${TMPPLIST}
@${ECHO} "@dirrm share/examples/${PORTNAME}" >> ${TMPPLIST}
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/doc/wfb2sql.html ${DOCSDIR}
@${ECHO} "share/doc/${PORTNAME}/wfb2sql.html" >> ${TMPPLIST}
@${ECHO} "@dirrm share/doc/${PORTNAME}/" >> ${TMPPLIST}
.endif
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>