blob: a5f7cd96182ac7307fa4425c3b0588fdf3ecc941 (
plain) (
blame)
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
|
# Created by: Janni
# $FreeBSD$
PORTNAME= gxemul
PORTVERSION= 0.6.0
CATEGORIES= emulators
MASTER_SITES= http://gxemul.sourceforge.net/src/ \
http://gavare.se/gxemul/src/
MAINTAINER= imp@FreeBSD.org
COMMENT= Instruction-level machine emulator
OPTIONS_DEFINE= X11 DOCS
OPTIONS_DEFAULT= X11
HAS_CONFIGURE= yes
ALL_TARGET= build
MAKE_JOBS_UNSAFE= yes
MAN1= gxemul.1
PORTDOCS= *
PLIST_FILES= bin/gxemul
# svgalib installs vga.h, which conflicts with gxemul when building with
# a virtual VGA adaptor.
CONFLICTS= svgalib-[0-9]*
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MX11}
USE_XORG= x11
.else
CONFIGURE_ARGS+=--disable-x
.endif
post-patch:
@${REINPLACE_CMD} -Ee \
's|/usr/X11R6|${LOCALBASE}|g; \
s|-O[0-9]?||g; \
s|-f[a-zA-Z-]+||g' ${WRKSRC}/configure
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/gxemul ${PREFIX}/bin
${INSTALL_DATA} ${WRKSRC}/man/gxemul.1 ${MAN1PREFIX}/man/man1
.if ${PORT_OPTIONS:MDOCS}
${MKDIR} ${DOCSDIR}
${MKDIR} -p ${DOCSDIR}/components
${MKDIR} -p ${DOCSDIR}/machines
${INSTALL_DATA} ${WRKSRC}/doc/components/* ${DOCSDIR}/components
${INSTALL_DATA} ${WRKSRC}/doc/machines/* ${DOCSDIR}/machines
${INSTALL_DATA} `find ${WRKSRC}/doc/ -type f -depth 1` ${DOCSDIR}
.endif
.include <bsd.port.mk>
|