summaryrefslogtreecommitdiff
path: root/mail
diff options
context:
space:
mode:
authorjlam <jlam>2004-03-31 02:25:11 +0000
committerjlam <jlam>2004-03-31 02:25:11 +0000
commitaf69fead0141197d0efddeb90f08983698af6ee3 (patch)
tree71d7e74357f035092f96d7e4d1937dc127aacf69 /mail
parent263cecdf471a11f5801cb1e5e2dd0b19f1c75391 (diff)
downloadpkgsrc-af69fead0141197d0efddeb90f08983698af6ee3.tar.gz
Install files one by one to workaround more feeble install programs.
Diffstat (limited to 'mail')
-rw-r--r--mail/fetchmail/Makefile17
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"