mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-14 07:43:06 +00:00
e0de738591
All applications in the ports tree works correctly with unicode version of wxGTK Newer version of wxGTK are unicode only (3.0+) Note that now WX_UNICODE macro is noop
36 lines
733 B
Makefile
36 lines
733 B
Makefile
# Created by: ijliao
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= graphthing
|
|
PORTVERSION= 1.3.2
|
|
PORTREVISION= 11
|
|
CATEGORIES= math
|
|
MASTER_SITES= http://graph.seul.org/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Tool that allows you to create, manipulate, and study graphs
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USE_GNOME= gtk20
|
|
USES= bison gmake tar:bzip2
|
|
USE_WX= 2.8
|
|
WX_UNICODE= yes
|
|
WX_CONF_ARGS= absolute
|
|
GNU_CONFIGURE= yes
|
|
MAKEFILE= GNUmakefile
|
|
|
|
PLIST_FILES= bin/graphthing bin/gt
|
|
LDFLAGS+= -lpthread
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
's|@@CXX@|@CXX@|' ${WRKSRC}/src/GNUmakefile.in
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/graphthing ${STAGEDIR}${PREFIX}/bin
|
|
${LN} -sf graphthing ${STAGEDIR}${PREFIX}/bin/gt
|
|
|
|
.include <bsd.port.mk>
|