blob: 5c3c0bb993962888304311075b134d6313217790 (
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
|
# New ports collection makefile for: lxinput
# Date created: 2010/09/24
# Whom: Kris Moore <kmoore@freebsd.org>
#
# $FreeBSD$
#
PORTNAME= lxinput
PORTVERSION= 0.3.1
PORTREVISION= 1
CATEGORIES= sysutils
MASTER_SITES= SF/lxde/LXInput%20%28Kbd%20and%20amp_%20mouse%20config%29/LXInput%200.3.1
MAINTAINER= kmoore@FreeBSD.org
COMMENT= A keyboard and mouse config tool from the LXDE project
USE_GNOME= gtk20 intlhack
USE_GMAKE= yes
USES= iconv
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
CONFIGURE_ARGS= --prefix=${PREFIX}
MAN1= lxinput.1
.if !defined(WITHOUT_NLS)
USES+= gettext
PLIST_SUB+= NLS=""
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
.else
CONFIGURE_ARGS+=--disable-nls
PLIST_SUB+= NLS="@comment "
.endif
.include <bsd.port.mk>
|