mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
0b1b0a6f25
Accesses data in an MySQL database as Perl objects. PR: 14847 Submitted by: Chris D. Faulhaber <jedgar@fxp.org>
35 lines
942 B
Makefile
35 lines
942 B
Makefile
# New ports collection makefile for: p5-MyObject
|
|
# Version required: 1.0
|
|
# Date created: 14 November 1999
|
|
# Whom: Chris D. Faulhaber <jedgar@fxp.org>
|
|
#
|
|
# $FreeBSD: /tmp/pcvs/ports/databases/p5-MyObject/Attic/Makefile,v 1.1.1.1 1999-11-27 05:38:29 steve Exp $
|
|
#
|
|
|
|
DISTNAME= MyObject.pm
|
|
PKGNAME= p5-MyObject-1.0
|
|
CATEGORIES= databases perl5
|
|
MASTER_SITES= http://www.frontierworld.com/perl/
|
|
EXTRACT_SUFX=
|
|
|
|
MAINTAINER= jedgar@fxp.org
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Mysql.pm:${PORTSDIR}/databases/p5-Mysql
|
|
|
|
USE_PERL5= yes
|
|
POD2MAN= /usr/bin/pod2man
|
|
NO_BUILD= yes
|
|
|
|
MAN3= MyObject.3
|
|
|
|
do-extract:
|
|
@${MKDIR} ${WRKSRC}
|
|
@${CP} ${DISTDIR}/${DISTNAME} ${WRKSRC}
|
|
@(cd ${WRKSRC}; ${POD2MAN} MyObject.pm > MyObject.3)
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/MyObject.pm ${PREFIX}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}
|
|
${INSTALL_MAN} ${WRKSRC}/MyObject.3 ${PREFIX}/man/man3
|
|
|
|
.include <bsd.port.mk>
|