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 | |
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')
-rw-r--r-- | misc/openoffice/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/misc/openoffice/Makefile b/misc/openoffice/Makefile index 55721bc5f76..490ea808cbb 100644 --- a/misc/openoffice/Makefile +++ b/misc/openoffice/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.68 2005/07/16 19:10:39 jlam Exp $ +# $NetBSD: Makefile,v 1.69 2005/09/11 10:49:35 mrauch Exp $ DISTNAME= openoffice-1.1.4 PKGREVISION= 2 @@ -42,7 +42,7 @@ CONFIGURE_ARGS+= --enable-mozilla --disable-java CONFIGURE_ARGS+= --with-lang="AFRIK","ARAB","BASQUE","CHINSIM","CHINTRAD","CZECH","DAN","DTCH","ENUS","ESTONIAN","FINN","FREN","GAL","GREEK","HEBREW","HUNG","ITAL","JAPN","KOREAN","LITHUANIAN","NORBOK","NORNYN","NSOTHO","POL","PORT","PORTBR","RUSS","SLOVAK","SLOVENIAN","SPAN","SWED","TURK","WELSH","ZULU" CONFIGURE_ARGS+= --with-dict=ALL -TEMP?= ${WRKSRC} +TEMP?= ${WRKDIR} UNLIMIT_RESOURCES+= datasize PLIST_SRC+= PLIST.common @@ -85,7 +85,7 @@ pre-install: >${WRKSRC}/../instsetoo/${OPENOFFICE_OUTPATH}.pro/${OPENOFFICE_LANGCODE}/normal/setup.ins do-install: - ${SH} -c "cd ${WRKSRC}/../instsetoo/${OPENOFFICE_OUTPATH}.pro/${OPENOFFICE_LANGCODE}/normal; ./install --prefix=${PREFIX}" + cd ${WRKSRC}/../instsetoo/${OPENOFFICE_OUTPATH}.pro/${OPENOFFICE_LANGCODE}/normal; ${SETENV} TEMP=${TEMP} ./install --prefix=${PREFIX}" ${TOUCH} ${PREFIX}/${OPENOFFICE_VERSION}/help/${OPENOFFICE_HELPCODE}/common.tree ${TOUCH} ${PREFIX}/${OPENOFFICE_VERSION}/help/${OPENOFFICE_HELPCODE}/schart.tree ${TOUCH} ${PREFIX}/${OPENOFFICE_VERSION}/help/${OPENOFFICE_HELPCODE}/sdraw.tree |