blob: 4d86107b2c10dee46cf11086b4ceabf9e198b41c (
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
|
# Created by: Brad Lanam <bll@gentoo.com>
# $FreeBSD$
PORTNAME= di
PORTVERSION= 4.34
CATEGORIES= sysutils
MASTER_SITES= http://www.gentoo.com/di/
MAINTAINER= cyberbotx@cyberbotx.com
COMMENT= Disk Information Utility
MAKE_ENV+= prefix="${PREFIX}"
MAN1= di.1
OPTIONS_DEFINE= NLS
NO_STAGE= yes
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MNLS}
USES+= gettext
PLIST_SUB= NLS=""
.else
PLIST_SUB= NLS="@comment "
MAKE_ENV+= DI_NO_NLS=T
.endif
post-patch:
@${REINPLACE_CMD} -e "s|zoneid_t|zoneId_t|g" ${WRKSRC}/C/di.c
.include <bsd.port.mk>
|