blob: 2e0cab0516f8dda1fe75e1e59710d3bf1ea50f5c (
plain)
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
|
# $NetBSD: Makefile,v 1.3 2002/11/26 22:20:36 mjl Exp $
#
VERS= 1.01
DISTNAME= postgresql_autodoc-${VERS}
CATEGORIES= textproc database
MASTER_SITES= http://www.rbt.ca/autodoc/
MAINTAINER= packages@netbsd.org
HOMEPAGE= http://www.rbt.ca/autodoc/
COMMENT= Generate HTML, DOT, and XML description of database structure
DEPENDS+= p5-DBI-[0-9]*:../../databases/p5-DBI
DEPENDS+= p5-DBD-postgresql-[0-9]*:../../databases/p5-DBD-postgresql
#NO_CONFIGURE= YES # Configure needed for REPLACE_PERL
NO_BUILD= YES
REPLACE_PERL= postgresql_autodoc.pl
WRKSRC= ${WRKDIR}
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/postgresql_autodoc.pl ${PREFIX}/bin/postgresql_autodoc
.include "../../lang/perl5/buildlink2.mk"
.include "../../mk/bsd.pkg.mk"
|