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/perl2html | |
parent | 43e4e9f2f970a47a0876fb8fa16fac232e8e4333 (diff) | |
download | ports-98070cb4abf007434095fb50735f61006777df88.tar.gz ports-98070cb4abf007434095fb50735f61006777df88.zip |
Notes
Diffstat (limited to 'textproc/perl2html')
-rw-r--r-- | textproc/perl2html/Makefile | 2 | ||||
-rw-r--r-- | textproc/perl2html/distinfo | 2 | ||||
-rw-r--r-- | textproc/perl2html/files/patch-aa | 36 |
3 files changed, 32 insertions, 8 deletions
diff --git a/textproc/perl2html/Makefile b/textproc/perl2html/Makefile index 173f5182e92c..a7039d0246ae 100644 --- a/textproc/perl2html/Makefile +++ b/textproc/perl2html/Makefile @@ -6,7 +6,7 @@ # PORTNAME= perl2html -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/perl2html/distinfo b/textproc/perl2html/distinfo index ab7f4e6a971f..0ac752d2f6e3 100644 --- a/textproc/perl2html/distinfo +++ b/textproc/perl2html/distinfo @@ -1 +1 @@ -MD5 (perl2html-0.7.2.tar.gz) = 0ca73bb3b5a138a45632eb756e016799 +MD5 (perl2html-0.9.1.tar.gz) = 90d2f8ed91cc02a1c53569b933a08bef diff --git a/textproc/perl2html/files/patch-aa b/textproc/perl2html/files/patch-aa index 3da005399ff4..12f48fbc0140 100644 --- a/textproc/perl2html/files/patch-aa +++ b/textproc/perl2html/files/patch-aa @@ -1,6 +1,6 @@ ---- Makefile.in.orig Wed May 26 19:31:36 1999 -+++ Makefile.in Thu May 27 21:54:22 1999 -@@ -9,7 +9,7 @@ +--- Makefile.in.orig Sat Apr 15 17:16:42 2000 ++++ Makefile.in Sun Apr 23 15:58:22 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 |