blob: abc32c6aaf31e8749b6217cd1bc2b26a13bdb3ef (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# New ports collection makefile for: mysql2pgsql
# Date Created: 27 May 2001
# Whom: Pete Fritchman <petef@databits.net>
#
# $FreeBSD$
#
PORTNAME= mysql2pgsql
PORTVERSION= 20010527
PORTREVISION= 1
CATEGORIES= databases
MASTER_SITES= http://www.rot13.org/~dpavlin/projects/sql/
DISTNAME= ${PORTNAME}
EXTRACT_SUFX=
EXTRACT_ONLY= ${PORTNAME}
MAINTAINER= ports@FreeBSD.org
COMMENT= Convert a MySQL dump to a PostgreSQL dump
RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/DBD/Pg.pm:${PORTSDIR}/databases/p5-DBD-Pg
PATCH_WRKSRC= ${WRKDIR}
PLIST_FILES= bin/mysql2pgsql
USE_PERL5= yes
NO_BUILD= yes
do-extract:
${MKDIR} ${WRKDIR}
${CP} -p ${DISTDIR}/mysql2pgsql ${WRKDIR}
do-install:
${INSTALL_SCRIPT} ${WRKDIR}/mysql2pgsql ${PREFIX}/bin
.include <bsd.port.mk>
|