diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2005-12-05 00:53:19 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2005-12-05 00:53:19 +0000 |
commit | c92cd658645286c7b4483aad14dfa79eba6526cf (patch) | |
tree | 1017b9d95ca18346b1af1bc9fa9b68fefbf87410 /graphics/ocrad | |
parent | c8d78958955dc56f6c297504b1242b12275acaaa (diff) |
Remove install-info from Makefile, it's automatically done when INFO is defined
Notes
Notes:
svn path=/head/; revision=150431
Diffstat (limited to 'graphics/ocrad')
-rw-r--r-- | graphics/ocrad/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/graphics/ocrad/Makefile b/graphics/ocrad/Makefile index da3ba51c9ed6..afac46608f9e 100644 --- a/graphics/ocrad/Makefile +++ b/graphics/ocrad/Makefile @@ -34,8 +34,10 @@ MAKE_ENV+= CPPFLAGS="${CPPFLAGS} -DHAVE_DECL_GETOPT" PORTDOCS= AUTHORS ChangeLog NEWS README TODO PLIST_FILES= bin/ocrad +.if !defined(NOPORTDOCS) INFO= ocrad MAN1= ocrad.1 +.endif do-install: ${INSTALL_PROGRAM} ${WRKSRC}/ocrad ${PREFIX}/bin @@ -43,7 +45,6 @@ do-install: @${MKDIR} ${DOCSDIR} && cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} @${INSTALL_MAN} ${WRKSRC}/doc/ocrad.1 ${PREFIX}/man/man1 @${INSTALL_DATA} ${WRKSRC}/doc/ocrad.info ${PREFIX}/info - @install-info ${PREFIX}/info/ocrad.info ${PREFIX}/info/dir .endif .include <bsd.port.post.mk> |