mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
Update to version 0.5.
PR: 10885 Submitted by: maintainer
This commit is contained in:
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
|
@ -3,10 +3,10 @@
|
||||||
# Date created: 21 March 1999
|
# Date created: 21 March 1999
|
||||||
# Whom: Martin Kammerhofer
|
# 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
|
CATEGORIES= textproc www
|
||||||
MASTER_SITES= ${MASTER_SITE_SUNSITE}
|
MASTER_SITES= ${MASTER_SITE_SUNSITE}
|
||||||
MASTER_SITE_SUBDIR= apps/www/converters
|
MASTER_SITE_SUBDIR= apps/www/converters
|
||||||
|
@ -20,9 +20,9 @@ MAN1= java2html.1
|
||||||
.if !defined(NOPORTDOCS)
|
.if !defined(NOPORTDOCS)
|
||||||
post-install:
|
post-install:
|
||||||
${MKDIR} ${PREFIX}/share/doc/java2html
|
${MKDIR} ${PREFIX}/share/doc/java2html
|
||||||
${INSTALL_MAN} ${WRKSRC}/AUTHORS ${PREFIX}/share/doc/java2html
|
.for file in AUTHORS NEWS README
|
||||||
${INSTALL_MAN} ${WRKSRC}/NEWS ${PREFIX}/share/doc/java2html
|
${INSTALL_MAN} ${WRKSRC}/${file} ${PREFIX}/share/doc/java2html
|
||||||
${INSTALL_MAN} ${WRKSRC}/README ${PREFIX}/share/doc/java2html
|
.endfor
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
.include <bsd.port.mk>
|
.include <bsd.port.mk>
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
MD5 (java2html-0.4.tar.gz) = c13dd7e6a90cbc38a7db7472bc3b35bd
|
MD5 (java2html-0.5.tar.gz) = 044f8ea3aee287f7b66ce14a5a93bb31
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
--- Makefile.in~ Wed Mar 10 22:14:48 1999
|
--- Makefile.in.orig Wed Apr 14 18:28:16 1999
|
||||||
+++ Makefile.in Sun Mar 21 18:19:16 1999
|
+++ Makefile.in Thu Apr 15 22:55:00 1999
|
||||||
@@ -12,7 +12,7 @@
|
@@ -12,7 +12,7 @@
|
||||||
# for gzip because otherwise the load on the web server
|
# for gzip because otherwise the load on the web server
|
||||||
# grows without having big benefits.
|
# grows without having big benefits.
|
||||||
|
@ -8,14 +8,13 @@
|
||||||
+COMPRESSION ?= -DCOMPRESSION=1
|
+COMPRESSION ?= -DCOMPRESSION=1
|
||||||
|
|
||||||
# Dont change things beyond this line.
|
# Dont change things beyond this line.
|
||||||
TARGET = c2html
|
TARGET = java2html
|
||||||
@@ -40,7 +40,7 @@
|
@@ -43,7 +43,7 @@
|
||||||
srcdir = @srcdir@
|
srcdir = @srcdir@
|
||||||
CPPFLAGS = @CPPFLAGS@
|
CPPFLAGS = @CPPFLAGS@
|
||||||
|
|
||||||
-CFLAGS = -O2 -Wall -pedantic $(COMPRESSION)
|
-CFLAGS += -O2 -Wall -pedantic
|
||||||
+CFLAGS ?= -O2 -Wall -pedantic
|
+CFLAGS ?= -O2 -Wall -pedantic
|
||||||
-ALL_CFLAGS = $(CFLAGS) -I$(srcdir)
|
ALL_CFLAGS = $(CFLAGS) -I$(srcdir) $(COMPRESSION)
|
||||||
+ALL_CFLAGS = $(CFLAGS) -I$(srcdir) $(COMPRESSION)
|
|
||||||
|
|
||||||
all: $(TARGET)
|
all: $(TARGET)
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Java, C and C++ to HTML converter
|
Java sources to HTML converter
|
||||||
|
|
Loading…
Add table
Reference in a new issue