59f0f56aa7
Author claims this closes all (temporary) file creation vulnerabilities. Frankly, I can't tell. Mention caveat in SECURITY.
35 lines
758 B
Makefile
35 lines
758 B
Makefile
# $OpenBSD: Makefile,v 1.12 2000/12/12 18:31:30 naddy Exp $
|
|
|
|
DISTNAME= nano-0.9.23
|
|
CATEGORIES= editors
|
|
NEED_VERSION= 1.338
|
|
HOMEPAGE= http://www.nano-editor.org
|
|
|
|
MAINTAINER= Christian Weisgerber <naddy@openbsd.org>
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \
|
|
${HOMEPAGE}/dist/
|
|
MASTER_SITE_SUBDIR= nano
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
FLAVORS= slang
|
|
FLAVOR?=
|
|
|
|
LIB_DEPENDS= intl.1::devel/gettext
|
|
.if ${FLAVOR:L:Mslang}
|
|
LIB_DEPENDS+= slang.14.2::devel/libslang
|
|
.endif
|
|
|
|
CONFIGURE_STYLE= gnu autoconf
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
.if ${FLAVOR:L:Mslang}
|
|
CONFIGURE_ARGS+= --with-slang='${LOCALBASE}'
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|