51 lines
1.3 KiB
Makefile

# $OpenBSD: Makefile,v 1.16 2021/06/09 19:50:07 sthen Exp $
V = 2.1pl20200624
COMMENT = scrabble game
DISTNAME = eliot-${V}
REVISION = 0
CATEGORIES = games
HOMEPAGE = https://nongnu.org/eliot/
MASTER_SITES = https://namtsui.com/source/
EXTRACT_ONLY = ${DISTNAME}${EXTRACT_SUFX}
DISTFILES += ${DISTNAME}${EXTRACT_SUFX}
DIST_SUBDIR = eliot
DICTS = danosc eliot-dic-cs eliot-dic-fr lex-fise rak sowpods06 twl06
.for dict in ${DICTS}
DISTFILES+= ${dict}.dawg:0
.endfor
MASTER_SITES0 = ${MASTER_SITE_SAVANNAH:=eliot/dict/}
# GPLv2
PERMIT_PACKAGE = Yes
MODULES = x11/qt5
COMPILER = base-clang ports-gcc base-gcc
CONFIGURE_STYLE = gnu
CONFIGURE_ENV += CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${X11BASE}/lib -pthread -L${LOCALBASE}/lib -liconv"
USE_GMAKE = Yes
BUILD_DEPENDS = devel/boost
RUN_DEPENDS = devel/desktop-file-utils
LIB_DEPENDS = textproc/arabica devel/libconfig
WANTLIB += Qt5Core Qt5Gui Qt5Network Qt5PrintSupport Qt5Widgets
WANTLIB += c m pthread ${COMPILER_LIBCXX}
WANTLIB += arabica config++ expat iconv intl curses
post-configure:
${SUBST_CMD} ${WRKSRC}/qt/main_window.cpp
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/eliot
.for dict in ${DICTS}
${INSTALL_DATA} ${FULLDISTDIR}/${dict}.dawg ${PREFIX}/share/eliot
.endfor
.include <bsd.port.mk>