1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-05 11:35:01 +00:00

Update to version 0.5.

PR:		10885
Submitted by:	maintainer
This commit is contained in:
Steve Price 1999-05-04 22:40:43 +00:00
parent 5af2dded5c
commit 24d0b0db6c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=18480
4 changed files with 14 additions and 15 deletions

View File

@ -3,10 +3,10 @@
# Date created: 21 March 1999
# Whom: Martin Kammerhofer
#
# $Id$
# $Id: Makefile,v 1.1.1.1 1999/05/03 02:55:19 steve Exp $
#
DISTNAME= java2html-0.4
DISTNAME= java2html-0.5
CATEGORIES= textproc www
MASTER_SITES= ${MASTER_SITE_SUNSITE}
MASTER_SITE_SUBDIR= apps/www/converters
@ -20,9 +20,9 @@ MAN1= java2html.1
.if !defined(NOPORTDOCS)
post-install:
${MKDIR} ${PREFIX}/share/doc/java2html
${INSTALL_MAN} ${WRKSRC}/AUTHORS ${PREFIX}/share/doc/java2html
${INSTALL_MAN} ${WRKSRC}/NEWS ${PREFIX}/share/doc/java2html
${INSTALL_MAN} ${WRKSRC}/README ${PREFIX}/share/doc/java2html
.for file in AUTHORS NEWS README
${INSTALL_MAN} ${WRKSRC}/${file} ${PREFIX}/share/doc/java2html
.endfor
.endif
.include <bsd.port.mk>

View File

@ -1 +1 @@
MD5 (java2html-0.4.tar.gz) = c13dd7e6a90cbc38a7db7472bc3b35bd
MD5 (java2html-0.5.tar.gz) = 044f8ea3aee287f7b66ce14a5a93bb31

View File

@ -1,5 +1,5 @@
--- Makefile.in~ Wed Mar 10 22:14:48 1999
+++ Makefile.in Sun Mar 21 18:19:16 1999
--- Makefile.in.orig Wed Apr 14 18:28:16 1999
+++ Makefile.in Thu Apr 15 22:55:00 1999
@@ -12,7 +12,7 @@
# for gzip because otherwise the load on the web server
# grows without having big benefits.
@ -8,14 +8,13 @@
+COMPRESSION ?= -DCOMPRESSION=1
# Dont change things beyond this line.
TARGET = c2html
@@ -40,7 +40,7 @@
TARGET = java2html
@@ -43,7 +43,7 @@
srcdir = @srcdir@
CPPFLAGS = @CPPFLAGS@
-CFLAGS = -O2 -Wall -pedantic $(COMPRESSION)
+CFLAGS ?= -O2 -Wall -pedantic
-ALL_CFLAGS = $(CFLAGS) -I$(srcdir)
+ALL_CFLAGS = $(CFLAGS) -I$(srcdir) $(COMPRESSION)
-CFLAGS += -O2 -Wall -pedantic
+CFLAGS ?= -O2 -Wall -pedantic
ALL_CFLAGS = $(CFLAGS) -I$(srcdir) $(COMPRESSION)
all: $(TARGET)

View File

@ -1 +1 @@
Java, C and C++ to HTML converter
Java sources to HTML converter