diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2002-01-05 23:43:13 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2002-01-05 23:43:13 +0000 |
commit | 2025ba84eedefaef90a7e7d9eaee3f6f03181f8f (patch) | |
tree | 701fd40b4de20d4b4b0bb2d2c9b977933243c1a2 /net | |
parent | Update to 2.8 (diff) |
- make portlint happier
- use DOCSDIR or EXAMPLESDIR
- get rid of some INTERACTIVE scrips in news/ifmail
Notes
Notes:
svn path=/head/; revision=52636
Diffstat (limited to 'net')
-rw-r--r-- | net/crescendo/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/net/crescendo/Makefile b/net/crescendo/Makefile index fd873f7c3b36..010232eb3152 100644 --- a/net/crescendo/Makefile +++ b/net/crescendo/Makefile @@ -24,9 +24,7 @@ CONFIGURE_ARGS+= --enable-compile-warnings=yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib" CFLAGS+= -g -PLIST_SUB= DOCDIR=${DOCDIR} - -DOCDIR= share/doc/${PORTNAME} +PLIST_SUB= DOCDIR=share/doc/${PORTNAME} pre-patch: @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ @@ -35,10 +33,10 @@ pre-patch: post-install: .if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/${DOCDIR} + ${MKDIR} ${DOCSDIR} .for file in AUTHORS COPYING ChangeLog HACKING INSTALL NEWS \ README README.BINARY TODO - ${INSTALL_MAN} ${WRKSRC}/${file} ${PREFIX}/${DOCDIR} + ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}/ .endfor .endif |