diff options
author | sno <sno@pkgsrc.org> | 2009-03-09 16:46:02 +0000 |
---|---|---|
committer | sno <sno@pkgsrc.org> | 2009-03-09 16:46:02 +0000 |
commit | d44adaab140200eeca2c75e74247da8b7812ba19 (patch) | |
tree | e34763ba0708633cb140b09b56fe6213f703639d /emulators/sap | |
parent | a1b6afe502992b8a25c5fd138220ae5d4d894b76 (diff) | |
download | pkgsrc-d44adaab140200eeca2c75e74247da8b7812ba19.tar.gz |
Common files for upcoming sap* imports.
Oked by joerg@
Diffstat (limited to 'emulators/sap')
-rw-r--r-- | emulators/sap/Makefile.common | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/emulators/sap/Makefile.common b/emulators/sap/Makefile.common new file mode 100644 index 00000000000..20486042244 --- /dev/null +++ b/emulators/sap/Makefile.common @@ -0,0 +1,31 @@ +# $NetBSD: Makefile.common,v 1.1.1.1 2009/03/09 16:46:02 sno Exp $ +# used by archivers/sapcar/Makefile +# used by devel/sapnwrfcsdk/Makefile + +EMUL_PLATFORMS?= linux-x86_64 linux-i386 linux-powerpc64 linux-ia64 \ + aix-powerpc hpux-ia64 hpux-hppa solaris-x86_64 \ + solaris-sparc windows-x86_64 windows-i586 \ + windows-ia64 + +.include "../../mk/bsd.prefs.mk" + +.if ${EMUL_PLATFORM} == "none" +SAP_OPSYS= ${LOWER_OPSYS} +SAP_ARCH= ${MACHINE_ARCH} +.else +SAP_OPSYS= ${EMUL_OPSYS} +SAP_ARCH= ${EMUL_ARCH} +.endif + +MASTER_SITES?= # empty +DIST_SUBDIR?= sap/${SAP_OPSYS}-${SAP_ARCH} +EXTRACT_SUFX?= .SAR + +HOMEPAGE?= http://www.sap.com/ + +WRKSRC?= ${WRKDIR} +BUILD_DIRS= # empty + +NO_CONFIGURE= yes +NO_BUILD= yes + |