mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-14 07:43:06 +00:00
22d7896c17
minor COMMENT typos and surrounding whitespace fixes. A few Makefiles where not included as they contain Latin-1 characters that break the Phabricator workflow. Categories T-V. CR: D509 Approved by: portmgr (antoine)
34 lines
817 B
Makefile
34 lines
817 B
Makefile
# Created by: Zhihao Yuan <lichray@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= artha
|
|
PORTVERSION= 1.0.3
|
|
PORTREVISION= 1
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= lichray@gmail.com
|
|
COMMENT= Free cross-platform English thesaurus
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib \
|
|
libWN.so:${PORTSDIR}/textproc/wordnet
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_GNOME= gtk20 intltool
|
|
USES= gmake libtool pkgconfig
|
|
|
|
CONFIGURE_ARGS= --enable-static=no --x-includes=${LOCALBASE}/include \
|
|
--x-libraries=${LOCALBASE}/lib
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/WordNet
|
|
LIBS+= `pkg-config --libs gio-2.0`
|
|
|
|
OPTIONS_DEFINE= NOTIFY
|
|
NOTIFY_DESC= Popup word definition as notification
|
|
|
|
NOTIFY_LIB_DEPENDS= libnotify.so:${PORTSDIR}/devel/libnotify
|
|
|
|
.include <bsd.port.mk>
|