blob: c8abbe8851a2c625dd947f7601c5ce48464f3789 (
plain)
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
|
# Created by: Grzegorz Blach <gblach@FreeBSD.org>
# $FreeBSD$
PORTNAME= e-module-alarm
PORTVERSION= 20140911
CATEGORIES= x11-wm enlightenment
MASTER_SITES= LOCAL/gblach/enlightenment/
MAINTAINER= enlightenment@FreeBSD.org
COMMENT= Module to set Alarms in Enlightenment
LICENSE= GPLv2
BUILD_DEPENDS= enlightenment:x11-wm/enlightenment
RUN_DEPENDS= enlightenment:x11-wm/enlightenment
DIST_SUBDIR= enlightenment
GNU_CONFIGURE= yes
USES= gmake libtool pkgconfig tar:xz
INSTALL_TARGET= install-strip
.include "../enlightenment/Makefile.plist"
OPTIONS_DEFINE= NLS
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MNLS}
USES+= gettext
CONFIGURE_ARGS+=--enable-nls
PLIST_SUB+= NLS=""
.else
CONFIGURE_ARGS+=--disable-nls
PLIST_SUB+= NLS="@comment "
.endif
.include <bsd.port.mk>
|