6bd0d65c65
- New, optional Makefile variable HOMEPAGE, specifies a URL for the home page of the software if it has one. - The value of HOMEPAGE is used to add a link from the README.html files. - pkglint updated to know about it. The "correct" location for HOMEPAGE in the Makefile is after MAINTAINER, in that same section.
25 lines
616 B
Makefile
25 lines
616 B
Makefile
# $NetBSD: Makefile,v 1.3 1998/08/20 15:17:17 tsarna Exp $
|
|
#
|
|
|
|
DISTNAME= nocol-4.2beta6
|
|
PKGNAME= nocol-4.2b6
|
|
CATEGORIES= net
|
|
MASTER_SITES= ftp://ftp.navya.com/pub/vikas/
|
|
|
|
MAINTAINER= packages@netbsd.org
|
|
HOMEPAGE= http://www.netplex-tech.com/software/nocol/
|
|
|
|
USE_PERL= yes
|
|
|
|
INSTALL_TARGET= install root
|
|
|
|
post-patch:
|
|
@(hostname=`/bin/hostname`; \
|
|
fqdn=`/usr/sbin/host $$hostname | /usr/bin/awk '{ print $$1; exit }'`; \
|
|
${SED} -e 's|@prefix@|${PREFIX}|g' -e "s|@FQDN@|$$fqdn|g" \
|
|
${FILESDIR}/answers > ${WRKSRC}/answers)
|
|
|
|
do-configure:
|
|
(cd ${WRKSRC}; ./Configure < answers)
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|