486f3f7d0b
The original mysql2pgsql has changed maintainership. So this port is also changed to based on the new maintainer's version. - Pass maintainership to submitter PR: ports/125580 Submitted by: Alex Kloss <klossalex at gmail.com> (maintainer)
30 lines
652 B
Makefile
30 lines
652 B
Makefile
# New ports collection makefile for: mysql2pgsql
|
|
# Date Created: 27 May 2001
|
|
# Whom: Pete Fritchman <petef@databits.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mysql2pgsql
|
|
PORTVERSION= 1.2
|
|
PORTEPOCH= 1
|
|
CATEGORIES= databases
|
|
MASTER_SITES= http://pgfoundry.org/frs/download.php/1535/
|
|
DISTNAME= ${PORTNAME}
|
|
EXTRACT_SUFX= .perl
|
|
|
|
MAINTAINER= klossalex@gmail.com
|
|
COMMENT= Convert a MySQL dump to a PostgreSQL dump
|
|
|
|
PLIST_FILES= bin/mysql2pgsql
|
|
USE_PERL5= yes
|
|
NO_BUILD= yes
|
|
|
|
do-extract:
|
|
${MKDIR} ${WRKDIR}
|
|
${CP} -p ${DISTDIR}/mysql2pgsql.perl ${WRKDIR}
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKDIR}/mysql2pgsql.perl ${PREFIX}/bin/mysql2pgsql
|
|
|
|
.include <bsd.port.mk>
|