blob: d2cffa626a56efd0b5d1eafe284c1101bfbecba9 (
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
82
83
84
85
86
87
88
|
# $NetBSD: Makefile,v 1.4 2010/02/11 15:16:18 joerg Exp $
PKGNAME= sapcar-7.00
CATEGORIES= archivers
EXTRACT_SUFX= # empty
PKG_DESTDIR_SUPPORT= user-destdir
.include "../../emulators/sap/Makefile.common"
.if ${SAP_OPSYS} == "linux"
.if ${SAP_ARCH} == "x86_64"
DISTNAME= SAPCAR_0-10003690.exe
.elif ${SAP_ARCH} == "i386"
DISTNAME= SAPCAR_0-10003688.exe
.elif ${SAP_ARCH} == "powerpc64"
DISTNAME= SAPCAR_0-10003687.exe
.elif ${SAP_ARCH} == "ia64"
DISTNAME= SAPCAR_0-10003689.exe
.else
BROKEN= Architecture ${MACHINE_ARCH} on this platform not supported
.endif
.elif ${SAP_OPSYS} == "aix"
.if ${SAP_ARCH} == "powerpc"
DISTNAME= SAPCAR_0-10003699.exe
.else
BROKEN= Architecture ${MACHINE_ARCH} on this platform not supported
.endif
.elif ${SAP_OPSYS} == "hpux"
.if ${SAP_ARCH} == "ia64"
DISTNAME= SAPCAR_0-10003682.exe
.elif ${SAP_ARCH} == "hppa"
DISTNAME= SAPCAR_0-10003683.exe
.else
BROKEN= Architecture ${MACHINE_ARCH} on this platform not supported
.endif
.elif ${SAP_OPSYS} == "solaris"
.if ${SAP_ARCH} == "x86_64"
DISTNAME= SAPCAR_0-10003701.exe
.elif ${SAP_ARCH} == "sparc64"
DISTNAME= SAPCAR_0-10003702.exe
.else
BROKEN= Architecture ${MACHINE_ARCH} on this platform not supported
.endif
.elif ${SAP_OPSYS} == "interix"
# Note: only native windows and interix is supported here - maybe MKS Toolkit
# Cygwin must fail!
.if ${SAP_ARCH} == "x86_64"
DISTNAME= SAPCAR_0-10003696.exe
.elif ${SAP_ARCH} == "i586"
DISTNAME= SAPCAR_0-10003694.exe
.elif ${SAP_ARCH} == "ia64"
DISTNAME= SAPCAR_0-10003695.exe
.else
BROKEN= Architecture ${MACHINE_ARCH} on platform ${OPSYS} not supported
.endif
.else
BROKEN= Platform ${OPSYS} not supported
.endif
MAINTAINER= pkgsrc-users@NetBSD.org
COMMENT= SAP archiver
LICENSE= sap-license
.if !exists(DOWNLOADED_DISTFILE) && make(pbulk-index)
PKG_FAIL_REASON+= "Missing distfile"
.endif
RESTRICTED= Only unmodified original package can be distributed
NO_BIN_ON_CDROM= ${RESTRICTED}
NO_BIN_ON_FTP= ${RESTRICTED}
WRKSRC= ${WRKDIR}/SAPCAR
BUILD_DIRS= # empty
NO_CONFIGURE= yes
NO_BUILD= yes
do-extract:
${MKDIR} ${WRKSRC:Q}
.for f in ${DISTNAME}
${CP} ${_DISTDIR:Q}/${f:Q} ${WRKSRC:Q}/${f:Q}
.endfor
do-install:
${INSTALL_PROGRAM} ${WRKSRC:Q}/${DISTNAME} ${PREFIX:Q}/bin/SAPCAR
.include "../../mk/bsd.pkg.mk"
|