1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-30 10:38:37 +00:00
freebsd-ports/emulators/xcpc/Makefile
Jan Beich 68036db43c Track used or drop unused devel/icu dependency
This tries to fix discrepancy between

  $ pkg rquery '%o %B' | awk '/libicu/ { print $1 }' | sort -u
  $ git grep -lF :devel/icu | sed 's,/Makefile$,,'

PR:		214384
Reported by:	tijl, stage-qa, readelf(1)
2016-11-11 11:59:55 +00:00

60 lines
1.2 KiB
Makefile

# Created by: joerg
# $FreeBSD$
PORTNAME= xcpc
PORTVERSION= 20070122
PORTREVISION= 15
CATEGORIES= emulators
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
MAINTAINER= pixel@hugbox.org
COMMENT= Portable Amstrad 464&/664/6128 emulator
HAS_CONFIGURE= yes
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
CONFIGURE_ARGS+=--prefix=${PREFIX}
USE_XORG= ice
USE_GNOME= glib20
USES= gettext iconv pkgconfig
LIB_DEPENDS+= libpcre.so:devel/pcre \
libdsk.so:emulators/libdsk
OPTIONS_DEFINE= MOTIF ATHENA XSHM DEBUG
OPTIONS_DEFAULT= MOTIF XSHM
MOTIF_DESC= With Motif widget set
ATHENA_DESC= With Athen widget set
XSHM_DESC= With XShm support
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MDEBUG}
CONFIGURE_ARGS+=--enable-debug
.else
CONFIGURE_ARGS+=--disable-debug
.endif
.if ${PORT_OPTIONS:MXSHM}
CONFIGURE_ARGS+=--enable-xshm
.else
CONFIGURE_ARGS+=--disable-xshm
.endif
.if ${PORT_OPTIONS:MMOTIF}
USES+= motif
CONFIGURE_ARGS+=--with-motif1
.else
CONFIGURE_ARGS+=--without-motif1
.endif
.if ${PORT_OPTIONS:MATHENA}
LIB_DEPENDS+= libXaw.so:x11-toolkits/libXaw
CONFIGURE_ARGS+=--with-athena
.else
CONFIGURE_ARGS+=--without-athena
.endif
.include <bsd.port.mk>