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/c2html | |
parent | 43e4e9f2f970a47a0876fb8fa16fac232e8e4333 (diff) |
Notes
Diffstat (limited to 'textproc/c2html')
-rw-r--r-- | textproc/c2html/Makefile | 3 | ||||
-rw-r--r-- | textproc/c2html/distinfo | 2 | ||||
-rw-r--r-- | textproc/c2html/files/patch-aa | 36 |
3 files changed, 32 insertions, 9 deletions
diff --git a/textproc/c2html/Makefile b/textproc/c2html/Makefile index 9cad04d4fc5b..fd14b5c0073d 100644 --- a/textproc/c2html/Makefile +++ b/textproc/c2html/Makefile @@ -6,7 +6,7 @@ # PORTNAME= c2html -PORTVERSION= 0.7.2 +PORTVERSION= 0.9.1 CATEGORIES= textproc www MASTER_SITES= ${MASTER_SITE_SUNSITE} MASTER_SITE_SUBDIR= apps/www/converters @@ -18,7 +18,6 @@ USE_AUTOCONF= yes MAN1= c2html.1 post-install: - strip ${PREFIX}/bin/c2html .if !defined(NOPORTDOCS) ${MKDIR} ${PREFIX}/share/doc/c2html .for file in AUTHORS NEWS README diff --git a/textproc/c2html/distinfo b/textproc/c2html/distinfo index 723603184e5a..ec01050f5478 100644 --- a/textproc/c2html/distinfo +++ b/textproc/c2html/distinfo @@ -1 +1 @@ -MD5 (c2html-0.7.2.tar.gz) = f507f31d0a1172cb9e6b4b31e816ed9a +MD5 (c2html-0.9.1.tar.gz) = 45811eede2860d046197ee248a9a34bd diff --git a/textproc/c2html/files/patch-aa b/textproc/c2html/files/patch-aa index f73652506b02..64206583c854 100644 --- a/textproc/c2html/files/patch-aa +++ b/textproc/c2html/files/patch-aa @@ -1,6 +1,6 @@ ---- Makefile.in.orig Mon May 24 14:32:18 1999 -+++ Makefile.in Wed May 26 18:44:22 1999 -@@ -9,7 +9,7 @@ +--- Makefile.in.orig Sat Apr 15 17:16:25 2000 ++++ Makefile.in Sun Apr 23 15:53:23 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 |