forked from Lainports/opnsense-ports
Taken from: https://github.com/freebsd/freebsd-ports.git Commit id: 5070672073b68be364139bc6b3a89100bd17d331
30 lines
578 B
Makefile
30 lines
578 B
Makefile
# Created by: verm
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= sed
|
|
PORTVERSION= 3.62
|
|
PORTREVISION= 3
|
|
CATEGORIES= editors textproc
|
|
MASTER_SITES= http://sed.sourceforge.net/grabbag/ssed/
|
|
PKGNAMEPREFIX= s
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Super-sed - a heavily enhanced version of sed
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --program-prefix=s
|
|
|
|
OPTIONS_DEFINE= NLS
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MNLS}
|
|
USES+= gettext iconv
|
|
CONFIGURE_ARGS+= ${ICONV_CONFIGURE_ARG}
|
|
PLIST_SUB+= NLS=""
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-nls
|
|
PLIST_SUB+= NLS="@comment "
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|