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.
34 lines
911 B
Makefile
34 lines
911 B
Makefile
# $NetBSD: Makefile,v 1.5 1998/08/20 15:17:40 tsarna Exp $
|
|
# FreeBSD Id: Makefile,v 1.2 1997/06/29 09:38:20 obrien Exp
|
|
#
|
|
|
|
DISTNAME= pns_source
|
|
PKGNAME= xpns-1.0
|
|
CATEGORIES= misc cad
|
|
MASTER_SITES= ftp://ftp.informatik.uni-stuttgart.de/pub/petri-nets/
|
|
EXTRACT_SUFX= .tar.Z
|
|
|
|
MAINTAINER= pgiffuni@fps.biblos.unal.edu.co
|
|
HOMEPAGE= http://www.informatik.uni-stuttgart.de/ipvr/bv/pns/pns.html
|
|
|
|
USE_X11= yes
|
|
NO_WRKSUBDIR= yes
|
|
MAKEFILE= makefile
|
|
ALL_TARGET= pns
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
do-install:
|
|
${MKDIR} ${PREFIX}/lib/xpns
|
|
${INSTALL_PROGRAM} ${WRKSRC}/pns ${PREFIX}/lib/xpns/
|
|
${INSTALL_DATA} ${WRKSRC}/pns.hlp ${PREFIX}/lib/xpns/
|
|
${INSTALL_DATA} ${WRKSRC}/pns.shell ${PREFIX}/lib/xpns/
|
|
${INSTALL_SCRIPT} ${WRKSRC}/xpns ${PREFIX}/bin/xpns
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${PREFIX}/share/doc/xpns
|
|
${CP} ${WRKSRC}/*.net ${PREFIX}/share/doc/xpns/
|
|
.endif
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|