diff options
author | bsiegert <bsiegert> | 2013-10-18 11:41:17 +0000 |
---|---|---|
committer | bsiegert <bsiegert> | 2013-10-18 11:41:17 +0000 |
commit | bea9e183721e9758b0e996736d15a1c67e4a2f14 (patch) | |
tree | 083a32de7285989cb2f223c037c007d9001e8881 /audio/festvox-us2 | |
parent | 048463f8ea8c6474290f42e63dd5c61874ec84e0 (diff) | |
download | pkgsrc-bea9e183721e9758b0e996736d15a1c67e4a2f14.tar.gz |
Fix a common mistake in many different packages: POSIX says that when using
pax -rw, the destination directory must exist. pax in NetBSD creates it if
not, pax in MirBSD complains. I read through all pkgsrc Makefiles that use
pax and added an entry to INSTALLATION_DIRS, or an INSTALL_DATA_DIR
invocation.
I did not test all the changes but they should be fairly safe. If you notice
any breakage because of this change, please contact me.
Diffstat (limited to 'audio/festvox-us2')
-rw-r--r-- | audio/festvox-us2/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/audio/festvox-us2/Makefile b/audio/festvox-us2/Makefile index ecd04cb2500..367687f4815 100644 --- a/audio/festvox-us2/Makefile +++ b/audio/festvox-us2/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.22 2012/09/11 23:59:36 asau Exp $ +# $NetBSD: Makefile,v 1.23 2013/10/18 11:41:17 bsiegert Exp $ DISTNAME= festvox_us2 PKGNAME= festvox-us2-1.4.0 @@ -30,6 +30,7 @@ post-extract: ${FIND} ${WRKSRC} -type d -print | ${XARGS} ${CHMOD} 755 do-install: + ${INSTALL_DATA_DIR} ${DESTDIR}${FHOME} cd ${WRKSRC} && pax -rw * ${DESTDIR}${FHOME} #ugh ${LN} -fs ../../../../../mbrola/voices/us2 ${DESTDIR}${MBROLA} |