diff options
author | jlam <jlam@pkgsrc.org> | 2004-03-31 02:25:11 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2004-03-31 02:25:11 +0000 |
commit | 1e41c5e0b796fdff4d44d64f209adba3e8830a8c (patch) | |
tree | 71d7e74357f035092f96d7e4d1937dc127aacf69 /mail | |
parent | b98989f9b4a376a1df7aac48373b780615fec843 (diff) | |
download | pkgsrc-1e41c5e0b796fdff4d44d64f209adba3e8830a8c.tar.gz |
Install files one by one to workaround more feeble install programs.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/fetchmail/Makefile | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/mail/fetchmail/Makefile b/mail/fetchmail/Makefile index a81c21e5bf0..fc704421380 100644 --- a/mail/fetchmail/Makefile +++ b/mail/fetchmail/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.140 2004/03/31 02:22:04 jlam Exp $ +# $NetBSD: Makefile,v 1.141 2004/03/31 02:25:11 jlam Exp $ DISTNAME= fetchmail-6.2.5 PKGREVISION= 2 @@ -49,7 +49,7 @@ CONFIGURE_ARGS+= --with-kerberos=no CONFIGURE_ARGS+= --enable-inet6 .endif -FDOC= ${PREFIX}/share/doc/fetchmail +DOCDIR= ${PREFIX}/share/doc/fetchmail RCD_SCRIPTS= fetchmail post-extract: @@ -76,11 +76,14 @@ post-build: done post-install: - ${INSTALL_DATA_DIR} ${FDOC} - cd ${WRKSRC} && ${INSTALL_DATA} \ - FAQ NOTES FEATURES README COPYING \ - fetchmail-FAQ.html fetchmail-features.html \ - design-notes.html ${FDOC} + ${INSTALL_DATA_DIR} ${DOCDIR} + cd ${WRKSRC}; for file in \ + FAQ NOTES FEATURES README COPYING \ + fetchmail-FAQ.html fetchmail-features.html \ + design-notes.html; \ + do \ + ${INSTALL_DATA} $$file ${DOCDIR}; \ + done .include "../../devel/gettext-lib/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |