pkgsrc/emulators/peace/Makefile
kent f4db2c9240 Update PEACE to 20040611 snapshot
- support statvfs change of NetBSD
- implement SuspendThread() and ResumeThread()
- introduce a simple debugger
- IsProcessorFeaturePresent(): implement PF_XMMI64_INSTRUCTIONS_AVAILABLE
and PF_FLOATING_POINT_PRECISION_ERRATA
- Some HCURSOR-related functions are implemented.
- improve Virtual*() functions support
- SEH support for SIGFPE and SIGSEGV
- debug messages are printed via stderr, not stdout
- fix a problem of CreateDIBitmap()
- implement GetPaletteEntries()
- implement GetDIBColorTable() and SetDIBColorTable()
- implement Heap*() functions
- make kernel object handles indexes in the handle table instead
of addresses of memory block.
- improve Event/Mutex/Semaphore implementation
2004-06-11 12:59:27 +00:00

41 lines
1.4 KiB
Makefile

# $NetBSD: Makefile,v 1.11 2004/06/11 12:59:27 kent Exp $
#
PEACE_VERSION= 0.0.20040611
DISTNAME= peace-${PEACE_VERSION}
SITES_peace-0.0.20040611.tar.gz=http://chiharu.hauN.org/peace/dist/
CATEGORIES= emulators
MAINTAINER= peace-sacrifice@hauN.org
HOMEPAGE= http://chiharu.hauN.org/peace/
COMMENT= Enable to run Win32 executables
DISTFILES+= peace-${PEACE_VERSION}.tar.gz
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=peace/}
ONLY_FOR_PLATFORM= NetBSD-1.6Z[D-Z]*-* NetBSD-[2-9]*-*
DEPENDS+= icu>=2.4nb1:../../textproc/icu
# bin/showstack requires perl5 and cross-i386-netbsdpe
# DEPENDS+= perl5:../../lang/perl5
# DEPENDS+= cross-i386-netbsdpe>=3.3:../../cross/i386-netbsdpe
BUILD_DEPENDS= cross-i386-netbsdpe>=3.3:../../cross/i386-netbsdpe
BUILD_DEPENDS+= w32api>=2.5:../../devel/w32api
BUILD_DEPENDS+= x11-links-*:../../pkgtools/x11-links
CPPFLAGS+= -I${WRKDIR}/cross/i386-netbsdpe/include
LDFLAGS= -L${WRKSRC}/lib
PECOFFDIR= ${PREFIX}/emul/pecoff
MAKE_FLAGS+= PECOFFDIR=${PECOFFDIR} \
LOCALBASE=${LOCALBASE} \
CROSSBASE=${CROSSBASE} \
X11BASE=${X11BASE} \
CHECK_DEPENDENTS=NO
MAKE_COMMAND= ${SETENV} ${MAKE_ENV} ${MAKE_PROGRAM} ${MAKE_FLAGS}
do-install:
${INSTALL_PROGRAM_DIR} ${PECOFFDIR}/usr/libexec
cd ${WRKSRC}/libexec/ld.pe_so && ${MAKE_COMMAND} install
${INSTALL_DATA_DIR} ${PECOFFDIR}/usr/lib
${_PKG_SILENT}cd ${WRKSRC}/dll && ${MAKE_COMMAND} install
${_PKG_SILENT}cd ${WRKSRC}/bin && ${MAKE_COMMAND} install
.include "../../mk/bsd.pkg.mk"