diff options
author | Steve Price <steve@FreeBSD.org> | 2000-04-30 00:29:48 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 2000-04-30 00:29:48 +0000 |
commit | 98070cb4abf007434095fb50735f61006777df88 (patch) | |
tree | ad4e1a9a2efd88d7c71c08b55a5df2b2aeae78c2 /textproc/java2html | |
parent | 43e4e9f2f970a47a0876fb8fa16fac232e8e4333 (diff) |
Notes
Diffstat (limited to 'textproc/java2html')
-rw-r--r-- | textproc/java2html/Makefile | 2 | ||||
-rw-r--r-- | textproc/java2html/distinfo | 2 | ||||
-rw-r--r-- | textproc/java2html/files/patch-aa | 36 |
3 files changed, 32 insertions, 8 deletions
diff --git a/textproc/java2html/Makefile b/textproc/java2html/Makefile index 82b11bfd4bbc..09e02c6f20e1 100644 --- a/textproc/java2html/Makefile +++ b/textproc/java2html/Makefile @@ -6,7 +6,7 @@ # PORTNAME= java2html -PORTVERSION= 0.7.2 +PORTVERSION= 0.9.1 CATEGORIES= textproc www MASTER_SITES= ${MASTER_SITE_SUNSITE} MASTER_SITE_SUBDIR= apps/www/converters diff --git a/textproc/java2html/distinfo b/textproc/java2html/distinfo index 5685d6b059cd..a5905a287e82 100644 --- a/textproc/java2html/distinfo +++ b/textproc/java2html/distinfo @@ -1 +1 @@ -MD5 (java2html-0.7.2.tar.gz) = a06c166312945a0bd17a1e97ffeb9a24 +MD5 (java2html-0.9.1.tar.gz) = c69d2ae10c2d6a1bc7305526fee5d01e diff --git a/textproc/java2html/files/patch-aa b/textproc/java2html/files/patch-aa index 0e71a01edbc0..50826b93e8cb 100644 --- a/textproc/java2html/files/patch-aa +++ b/textproc/java2html/files/patch-aa @@ -1,6 +1,6 @@ ---- Makefile.in.orig Mon May 24 14:33:08 1999 -+++ Makefile.in Wed May 26 12:20:22 1999 -@@ -9,7 +9,7 @@ +--- Makefile.in.orig Sat Apr 15 17:16:30 2000 ++++ Makefile.in Sun Apr 23 15:46:41 2000 +@@ -27,7 +27,7 @@ # for gzip because otherwise the load on the web server # grows without having big benefits. # COMPRESSION = -DCOMPRESSION=4 @@ -9,12 +9,36 @@ # Dont change things beyond this line. TARGET = @PROJECT_NAME@ -@@ -40,7 +40,7 @@ - srcdir = @srcdir@ +@@ -59,7 +59,7 @@ + docdir = @DOCDIR@ CPPFLAGS = @CPPFLAGS@ -CFLAGS += -O2 -Wall +CFLAGS ?= -O2 -Wall - ALL_CFLAGS = $(CFLAGS) -I$(srcdir) $(COMPRESSION) + ALL_CFLAGS = $(CFLAGS) -I$(srcdir) -I. $(COMPRESSION) all: $(TARGET) +@@ -70,10 +70,12 @@ + $(LEXOUTPUT): $(CONFIGS) $(LEXSRCS) $(HDRS) + $(LEX) $(LEXSRCS) + +-install: $(TARGET) install-doc ++install: $(TARGET) + @echo "Installing" $(TARGET) "to" $(bindir) + -mkdir -p $(bindir) + $(INSTALL_PROGRAM) $(TARGET) $(bindir)/$(TARGET) ++ -mkdir -p $(man1dir) ++ $(INSTALL_DATA) $(srcdir)/$(MANPAGE) $(man1dir)/$(MANPAGE) + + install-strip: $(TARGET) install-doc + @echo "Installing" $(TARGET) "to" $(bindir) +@@ -81,8 +83,7 @@ + $(INSTALL_PROGRAM) -s $(TARGET) $(bindir)/$(TARGET) + + install-doc: +- -mkdir -p $(man1dir) $(docdir) +- $(INSTALL_DATA) $(srcdir)/$(MANPAGE) $(man1dir)/$(MANPAGE) ++ -mkdir -p $(docdir) + $(INSTALL_DATA) $(srcdir)/AUTHORS $(docdir)/AUTHORS + $(INSTALL_DATA) $(srcdir)/COPYING $(docdir)/COPYING + $(INSTALL_DATA) $(srcdir)/NEWS $(docdir)/NEWS |