aboutsummaryrefslogtreecommitdiff
path: root/deskutils/easystroke/Makefile
blob: 2fc5db73d07b02668de8ce45760964ef392a5576 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Created by: Tobias Kortkamp <tobias.kortkamp@gmail.com>
# $FreeBSD$

PORTNAME=	easystroke
PORTVERSION=	0.6.0
PORTREVISION=	2
CATEGORIES=	deskutils
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTVERSION}

MAINTAINER=	t@tobik.me
COMMENT=	Easystroke is a gesture-recognition application for X11

LICENSE=	ISCL

BUILD_DEPENDS=	help2man:misc/help2man \
		${LOCALBASE}/include/xorg/xserver-properties.h:x11-servers/xorg-server
LIB_DEPENDS=	libgtkmm-3.0.so:x11-toolkits/gtkmm30 \
		libdbus-glib-1.so:devel/dbus-glib \
		libboost_serialization.so:devel/boost-libs

USE_XORG=	x11 xtst
USES=		gettext gmake pkgconfig
INSTALLS_ICONS=	yes

OPTIONS_DEFINE=	NLS

.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MNLS}
BUILD_DEPENDS+=	intltool-merge:textproc/intltool
PLIST_SUB+=		NLS=""
ALL_TARGET=		easystroke.desktop all man
.else
# This builds easystroke without translations
ALL_TARGET=		man
PLIST_SUB+=		NLS="@comment "
# Create a .desktop file without translations.
# It's usually created by intltool-merge during the build.
pre-build:
	@${CP} ${WRKSRC}/${PORTNAME}.desktop.in ${WRKSRC}/${PORTNAME}.desktop
.endif

do-install:
	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
	${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.desktop ${STAGEDIR}${PREFIX}/share/applications/
	${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.svg ${STAGEDIR}${PREFIX}/share/pixmaps/
	${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MAN1PREFIX}/man/man1

.if ${PORT_OPTIONS:MNLS}
	(cd ${WRKSRC}/po/ && \
		${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/share/locale/ "-name *.mo")
.endif

.include <bsd.port.mk>