blob: b6819e4a3e2c5099f8e6c3d077e385f5013835b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
# $NetBSD: Makefile,v 1.12 2003/06/24 14:14:17 abs Exp $
DISTNAME= OOo_1.0.3.1_LinuxIntel_install
PKGNAME= openoffice-linux-1.0.3.1
WRKSRC= ${WRKDIR}/install
CATEGORIES= misc
MASTER_SITES= http://sf1.mirror.openoffice.org/stable/1.0.3/ \
http://www.fs.tum.de/~mrauch/OpenOffice/download/
MAINTAINER= mrauch@netbsd.org
HOMEPAGE= http://www.openoffice.org/
COMMENT= Integrated office productivity suite (binary pkg)
NO_CONFIGURE= yes
CONFLICTS+= staroffice-[0-9]*
CONFLICTS+= openoffice-[0-9]*
ONLY_FOR_PLATFORM= NetBSD-1.[6-9]*-i386 NetBSD-[2-9]*-i386
TEMP?= ${WRKSRC}
.include "../../mk/bsd.prefs.mk"
PKG_JVM?= sun-jdk
PLIST_SUBST+= JAVA_HOME="${PKG_JAVA_HOME:C/^${PREFIX}\///}"
DISPLAY?= # empty, if unset
checkforx:
.if ${DISPLAY}=="" || ${DISPLAY_OK:!${X11BASE}/bin/xdpyinfo >/dev/null 2>&1 && ${ECHO} YES || ${ECHO} NO!} == "NO"
. if exists(${X11BASE}/bin/Xvfb)
-${X11BASE}/bin/Xvfb :2 &
DISPLAY= ':2'
. else
@${ECHO} "Error: Environment variable DISPLAY must be set"
@${ECHO} " and point to a connectible X server."
@${FALSE}
. endif #Xvfb
.endif #DISPLAY
do-build:
.if ${OPSYS} == "NetBSD"
USE_PKGINSTALL= yes
SUPPORT_FILES= /dev/null /emul/linux/etc/mtab
.endif
pre-install: checkforx
${SED} -e "s|@@PREFIX@@|${PREFIX}|g" \
< ${FILESDIR}/oo_setup.resp > ${WRKSRC}/oo_setup.resp
. if ${OPSYS}=="NetBSD" && !exists(/emul/linux/etc/mtab)
${CP} /dev/null /emul/linux/etc/mtab
. endif
do-install:
-${SH} -c "cd ${WRKSRC}; \
TEMP=${WRKSRC}; export TEMP; \
DISPLAY=${DISPLAY}; export DISPLAY; \
./setup -r:oo_setup.resp"
@if [ ! -x ${PREFIX}/OpenOffice.org1.0.3/setup ]; then \
${ECHO} "Installation was not successful."; \
${FALSE}; \
fi
${SED} -e "s|@@PREFIX@@|${PREFIX}|g" \
< ${FILESDIR}/soffice > ${PREFIX}/bin/soffice
${CHMOD} +x ${PREFIX}/bin/soffice
${PATCH} ${PATCH_ARGS} ${PREFIX}/OpenOffice.org1.0.3/program/soffice \
< ${FILESDIR}/soffice.test.patch
${LN} -sf ${PKG_JAVA_HOME} ${PKG_JAVA_HOME}/jre
# everything specific to your OS/Arch goes into it's own Makefile
# group together i386, i486, i586 and i686 (for Linux)
#
ARCH= ${MACHINE_ARCH:C/i[3-6]86/i386/g}
.if exists(Makefile.${OPSYS}.${ARCH})
. include "Makefile.${OPSYS}.${ARCH}"
.endif
.include "../../mk/java-vm.mk"
.include "../../mk/bsd.pkg.mk"
|