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.
21 lines
515 B
Makefile
21 lines
515 B
Makefile
# $NetBSD: Makefile,v 1.15 1998/08/20 15:17:08 tsarna Exp $
|
|
# FreeBSD Id: Makefile,v 1.1.1.1 1997/08/20 10:33:35 jkh Exp
|
|
#
|
|
|
|
DISTNAME= tcl8.0p2
|
|
PKGNAME= tcl-8.0p2
|
|
CATEGORIES= lang
|
|
MASTER_SITES= ftp://ftp.scriptics.com/pub/tcl/tcl8_0/
|
|
|
|
MAINTAINER= packages@netbsd.org
|
|
HOMEPAGE= http://www.scriptics.com/
|
|
|
|
WRKSRC= ${WRKDIR}/tcl8.0/unix
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --enable-shared
|
|
CONFIGURE_ENV+= PORTSDIR=${.CURDIR}/../../../../..
|
|
|
|
test:
|
|
cd ${WRKSRC} && ${MAKE} test
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|