diff options
author | itetcu <itetcu@FreeBSD.org> | 2008-06-24 15:03:37 +0800 |
---|---|---|
committer | itetcu <itetcu@FreeBSD.org> | 2008-06-24 15:03:37 +0800 |
commit | 47c4c3d3e8faa18934ab2ed340d7918078a41a8f (patch) | |
tree | a4791ba02f9193f57cad3691f10f707c5a874dbf | |
parent | 621c209170c1978399f67f474cc347c964e17854 (diff) | |
download | freebsd-ports-gnome-47c4c3d3e8faa18934ab2ed340d7918078a41a8f.tar.gz freebsd-ports-gnome-47c4c3d3e8faa18934ab2ed340d7918078a41a8f.tar.zst freebsd-ports-gnome-47c4c3d3e8faa18934ab2ed340d7918078a41a8f.zip |
- Really fix plist this time
- bump PORTREVISION again
-rw-r--r-- | audio/nas/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/audio/nas/Makefile b/audio/nas/Makefile index 10bad83d00c6..bec069b8354f 100644 --- a/audio/nas/Makefile +++ b/audio/nas/Makefile @@ -7,7 +7,7 @@ PORTNAME= nas PORTVERSION= 1.9.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio MASTER_SITES= SF EXTRACT_SUFX= .src.tar.gz @@ -28,6 +28,12 @@ SUB_FILES= pkg-message post-patch: @${FIND} ${WRKSRC} -name '*.c' | ${XARGS} ${GREP} -lF malloc.h \ | ${XARGS} ${REINPLACE_CMD} -n -e "s|<malloc.h>||" -e t -e p +.if defined(NOPORTDOCS) + ${REINPLACE_CMD} -e '/^install.man::/ { p; s/.*/ exit 0\\/; }' \ + ${WRKSRC}/Makefile +.else +.include "Makefile.man" +.endif post-configure: # Work around shortcomings of the Image.rules et. al: @@ -39,10 +45,6 @@ post-configure: post-install: @${CAT} ${PKGMESSAGE} -.ifndef(NOPORTDOCS) -. include "Makefile.man" -.endif - .if ${ARCH} == "sparc64" FPIC= -fPIC .else |