mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
3f651573ad
Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed.
30 lines
601 B
Makefile
30 lines
601 B
Makefile
# New ports collection makefile for: java2html
|
|
# Date created: 21 March 1999
|
|
# Whom: Martin Kammerhofer
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= java2html
|
|
PORTVERSION= 0.9.2
|
|
CATEGORIES= textproc www
|
|
MASTER_SITES= ${MASTER_SITE_SUNSITE}
|
|
MASTER_SITE_SUBDIR= apps/www/converters
|
|
|
|
MAINTAINER= mkamm@gmx.net
|
|
COMMENT= Java sources to HTML converter
|
|
|
|
USE_AUTOCONF_VER= 213
|
|
|
|
MAN1= java2html.1
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
post-install:
|
|
${MKDIR} ${PREFIX}/share/doc/java2html
|
|
.for file in AUTHORS NEWS README
|
|
${INSTALL_MAN} ${WRKSRC}/${file} ${PREFIX}/share/doc/java2html
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|