mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-28 05:29:48 +00:00
fa888adeab
- Take back maintainership relinquished in r298877
37 lines
867 B
Makefile
37 lines
867 B
Makefile
# Created by: Alexey Dokuchaev <danfe@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= tilem
|
|
PORTVERSION= 2.0
|
|
PORTREVISION= 4
|
|
CATEGORIES= emulators
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= danfe@FreeBSD.org
|
|
COMMENT= Texas Instruments Z80 series calculator emulator
|
|
|
|
LICENSE= GPLv3
|
|
|
|
LIB_DEPENDS= libticalcs2.so:comms/libticalcs2
|
|
|
|
USES= desktop-file-utils gnome pkgconfig shared-mime-info tar:bzip2
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= OPT_CFLAGS=" " # Inhibit -O3, our default CFLAGS are upheld
|
|
USE_GNOME= gtk20
|
|
INSTALLS_ICONS= yes
|
|
LIBS+= -lm
|
|
PORTDOCS= CHANGELOG KEYS NEWS README THANKS TODO
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
# Unbreak parallel builds (-jX)
|
|
post-patch:
|
|
@${REINPLACE_CMD} -E 's,cd (.+) && (\$$\(MAKE\)),\2 -C \1,' \
|
|
${WRKSRC}/Makefile.in
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|