43 lines
831 B
Makefile
43 lines
831 B
Makefile
# $OpenBSD: Makefile,v 1.31 2013/03/11 11:06:04 espie Exp $
|
|
|
|
COMMENT= ARM/M88k/MIPS/PowerPC/SuperH machines emulator
|
|
|
|
DISTNAME= gxemul-0.4.7.1
|
|
REVISION= 1
|
|
CATEGORIES= emulators
|
|
HOMEPAGE= http://gxemul.sourceforge.net/
|
|
|
|
MAINTAINER= Alexander Yurchenko <grange@openbsd.org>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
MASTER_SITES= ${HOMEPAGE}/src/
|
|
|
|
WANTLIB= c m
|
|
|
|
CONFIGURE_STYLE= simple
|
|
USE_GROFF = Yes
|
|
|
|
FLAVORS= no_x11
|
|
FLAVOR?=
|
|
|
|
.if ${FLAVOR:Mno_x11}
|
|
CONFIGURE_ARGS= --disable-x
|
|
.else
|
|
WANTLIB+= X11 pthread-stubs xcb
|
|
.endif
|
|
|
|
NO_TEST= Yes
|
|
|
|
INSTALL_STRIP=
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/gxemul ${PREFIX}/bin
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/gxemul
|
|
${INSTALL_DATA} ${WRKSRC}/doc/*.{gif,png,html} \
|
|
${PREFIX}/share/doc/gxemul
|
|
${INSTALL_DATA} ${WRKSRC}/man/gxemul.1 ${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|