developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
32 lines
892 B
Makefile
32 lines
892 B
Makefile
# $NetBSD: Makefile,v 1.11 2006/03/04 21:30:24 jlam Exp $
|
|
#
|
|
|
|
DISTNAME= ripe-whois-3.1.1v6
|
|
CATEGORIES= net
|
|
MASTER_SITES= ftp://ftp.ripe.net/tools/
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${ASCII_DOC} ${PS_DOC}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.ripe.net/ripencc/pub-services/db/
|
|
COMMENT= RIPE very simple and generic whois client
|
|
|
|
WRKSRC= ${WRKDIR}/whois-3.1.1v6
|
|
GNU_CONFIGURE= YES
|
|
USE_TOOLS+= perl
|
|
MAKE_ENV+= PERL5=${PERL5:Q}
|
|
BUILD_DEFS+= USE_INET6
|
|
|
|
ASCII_DOC= ripe-223.txt
|
|
PS_DOC= ripe-223.ps
|
|
DOCS= ${ASCII_DOC} ${PS_DOC}
|
|
SITES_${ASCII_DOC}= ftp://ftp.ripe.net/ripe/docs/
|
|
SITES_${PS_DOC}= ftp://ftp.ripe.net/ripe/docs/
|
|
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/ripe-whois
|
|
.for __file__ in ${DOCS}
|
|
${INSTALL_DATA} ${DISTDIR}/${__file__} ${PREFIX}/share/doc/ripe-whois
|
|
.endfor
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|