Index: pen/Makefile =================================================================== RCS file: /WORK/REPO/ports/net/pen/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- pen/Makefile 7 Oct 2003 07:50:52 -0000 1.13 +++ pen/Makefile 13 Oct 2003 14:37:24 -0000 @@ -7,7 +7,7 @@ # PORTNAME= pen -PORTVERSION= 0.11.0 +PORTVERSION= 0.11.1 CATEGORIES= net MASTER_SITES= ftp://siag.nu/pub/pen/ \ http://siag.nu/pub/pen/ @@ -16,7 +16,7 @@ COMMENT= A load balancer for "simple" tcp based protocols GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-daemon +CONFIGURE_ARGS= --with-daemon --with-docdir=${DOCSDIR} .if defined(WITH_FDSETSIZE) CONFIGURE_ARGS+= --with-fd_setsize=${WITH_FDSETSIZE} @@ -24,6 +24,10 @@ .if defined(WITH_POLL) CONFIGURE_ARGS+= --with-poll +.endif + +.if defined(NOPORTDOCS) +MAKE_ARGS+= -DNOPORTDOCS .endif MAN1= mergelogs.1 pen.1 penctl.1 penlog.1 penlogd.1 Index: pen/distinfo =================================================================== RCS file: /WORK/REPO/ports/net/pen/distinfo,v retrieving revision 1.8 diff -u -r1.8 distinfo --- pen/distinfo 7 Oct 2003 07:50:52 -0000 1.8 +++ pen/distinfo 13 Oct 2003 14:37:24 -0000 @@ -1 +1 @@ -MD5 (pen-0.11.0.tar.gz) = 3eb8de600f2954bd50f2758d8bf06e0c +MD5 (pen-0.11.1.tar.gz) = 8917aad055e749104863b013c1e73481 Index: pen/pkg-plist =================================================================== RCS file: /WORK/REPO/ports/net/pen/pkg-plist,v retrieving revision 1.3 diff -u -r1.3 pkg-plist --- pen/pkg-plist 5 Jul 2002 03:19:59 -0000 1.3 +++ pen/pkg-plist 13 Oct 2003 14:37:24 -0000 @@ -3,3 +3,10 @@ bin/penctl bin/penlog bin/penlogd +%%PORTDOCS%%%%DOCSDIR%%/penstats +%%PORTDOCS%%%%DOCSDIR%%/HOWTO +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/ChangeLog +%%PORTDOCS%%%%DOCSDIR%%/COPYING +%%PORTDOCS%%@dirrm %%PORTDOCS%%%%DOCSDIR%% Index: pen/files/patch-Makefile.in =================================================================== RCS file: pen/files/patch-Makefile.in diff -N pen/files/patch-Makefile.in --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ pen/files/patch-Makefile.in 13 Oct 2003 14:37:24 -0000 @@ -0,0 +1,18 @@ +--- Makefile.in.orig Sat Oct 11 18:57:55 2003 ++++ Makefile.in Mon Oct 13 16:29:09 2003 +@@ -296,6 +296,7 @@ + rm -f $(DESTDIR)$(man1dir)/$$inst; \ + done + install-docDATA: $(doc_DATA) ++.if !defined(NOPORTDOCS) + @$(NORMAL_INSTALL) + $(mkinstalldirs) $(DESTDIR)$(docdir) + @list='$(doc_DATA)'; for p in $$list; do \ +@@ -304,6 +305,7 @@ + echo " $(INSTALL_DATA) $$d$$p $(DESTDIR)$(docdir)/$$f"; \ + $(INSTALL_DATA) $$d$$p $(DESTDIR)$(docdir)/$$f; \ + done ++.endif + + uninstall-docDATA: + @$(NORMAL_UNINSTALL)