diff options
author | mrauch <mrauch@pkgsrc.org> | 2005-09-11 10:49:35 +0000 |
---|---|---|
committer | mrauch <mrauch@pkgsrc.org> | 2005-09-11 10:49:35 +0000 |
commit | 02958a05990ba1c39e4d2018b71bf70a462fac60 (patch) | |
tree | cb4547d9c2ae9e78c9469ebefd88a301708ee0e6 /misc/openoffice-bin | |
parent | 345ac26c9b4120dec790d5e633417e321e7ad9e3 (diff) | |
download | pkgsrc-02958a05990ba1c39e4d2018b71bf70a462fac60.tar.gz |
Fix the mechanism which sets the temporary directory where
OpenOffice.org will unpack intermediate files during install.
The package default /tmp may have not enough space.
Problem reported by Perry Metzger via mail to tech-pkg.
Diffstat (limited to 'misc/openoffice-bin')
-rw-r--r-- | misc/openoffice-bin/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/misc/openoffice-bin/Makefile b/misc/openoffice-bin/Makefile index 1718a946744..43afd798fbb 100644 --- a/misc/openoffice-bin/Makefile +++ b/misc/openoffice-bin/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2005/07/29 00:54:41 grant Exp $ +# $NetBSD: Makefile,v 1.10 2005/09/11 10:49:35 mrauch Exp $ PKGNAME= openoffice-bin-${OO_VER} PKGREVISION= 1 @@ -34,7 +34,7 @@ ONLY_FOR_PLATFORM= NetBSD-1.6*-i386 NetBSD-[2-9]*-i386 ONLY_FOR_PLATFORM+= Linux-*-i[3-6]86 ONLY_FOR_PLATFORM+= SunOS-*-* -TEMP?= ${WRKSRC} +TEMP?= ${WRKDIR} CHECK_SHLIBS= no .include "../../mk/bsd.prefs.mk" @@ -81,7 +81,7 @@ do-install: ${INSTALL_DATA_DIR} ${PREFIX}/OpenOffice.org${OO_VER}/program ${INSTALL_DATA} ${WRKDIR}/openoffice-linux-112-services.rdb \ ${PREFIX}/OpenOffice.org${OO_VER}/program/services.rdb - ${SH} -c "cd ${WRKSRC}; ./install --prefix=${PREFIX}" + cd ${WRKSRC}; ${SETENV} TEMP=${TEMP} ./install --prefix=${PREFIX} ${INSTALL_LIB} ${DISTDIR}/libsot645li.so \ ${PREFIX}/OpenOffice.org${OO_VER}/program/libsot645li.so ${RM} -f ${PREFIX}/bin/soffice.orig |