f79573370a
foo-* to foo-[0-9]*. This is to cause the dependencies to match only the packages whose base package name is "foo", and not those named "foo-bar". A concrete example is p5-Net-* matching p5-Net-DNS as well as p5-Net. Also change dependency examples in Packages.txt to reflect this.
30 lines
943 B
Makefile
30 lines
943 B
Makefile
# $NetBSD: Makefile,v 1.4 2001/09/27 23:18:47 jlam Exp $
|
|
#
|
|
|
|
DISTNAME= TclDOM-1.6
|
|
PKGNAME= tcl-dom-1.6
|
|
CATEGORIES= textproc www tcl
|
|
MASTER_SITES= http://www.zveno.com/in-tclxml/in-tcldom/
|
|
|
|
MAINTAINER= jwise@netbsd.org
|
|
HOMEPAGE= http://www.zveno.com/zm.cgi/in-tclxml/in-tcldom/
|
|
COMMENT= DOM implementation for use with TclXML or TclExpat
|
|
|
|
DEPENDS+= tcl-xml-[0-9]*:../../textproc/tcl-xml
|
|
|
|
# old name for this package...
|
|
CONFLICTS+= TclDom-[0-9]*
|
|
|
|
NO_CONFIGURE=
|
|
NO_BUILD=
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/lib/tcl/TclDOM
|
|
${INSTALL_DATA} ${WRKSRC}/pkgIndex.tcl ${PREFIX}/lib/tcl/TclDOM
|
|
${INSTALL_DATA} ${WRKSRC}/dom.tcl ${PREFIX}/lib/tcl/TclDOM
|
|
${INSTALL_DATA} ${WRKSRC}/dommap.tcl ${PREFIX}/lib/tcl/TclDOM
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/tcl/TclDOM
|
|
${INSTALL_DATA} ${WRKSRC}/docs/reference.html ${PREFIX}/share/doc/tcl/TclDOM
|
|
${INSTALL_DATA} ${WRKSRC}/changes ${PREFIX}/share/doc/tcl/TclDOM
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|