blob: 02a0175e9b8e1ebe8982fdcb9c6a15590ee2fd2d (
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
|
# Created by: Yinghong Liu <relaxbsd@gmail.com>
# $FreeBSD$
PORTNAME= relaxconf
PORTVERSION= 1.1.1
PORTREVISION= 3
CATEGORIES= sysutils
MASTER_SITES= SF/relaxbsd/${PORTNAME}/${PORTNAME}-${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= Set of text menu based utilities for configuring RelaxBSD LiveCD
BUILD_DEPENDS= cdialog:${PORTSDIR}/devel/cdialog
RUN_DEPENDS= cdialog:${PORTSDIR}/devel/cdialog \
disktype:${PORTSDIR}/sysutils/disktype
GNU_CONFIGURE= yes
OPTIONS_DEFINE= NLS
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MNLS}
PLIST_SUB+= NLS=""
USES+= gettext
.else
PLIST_SUB+= NLS="@comment "
CONFIGURE_ARGS+=--disable-nls
.endif
.include <bsd.port.mk>
|