Date: Thu, 11 Oct 2018 15:26:34 +0000 (UTC) From: Steve Wills <swills@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r481835 - branches/2018Q4/shells/oksh Message-ID: <201810111526.w9BFQY8g048246@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: swills Date: Thu Oct 11 15:26:33 2018 New Revision: 481835 URL: https://svnweb.freebsd.org/changeset/ports/481835 Log: MFH: r481781 shells/oksh: update to 20181009 While here, add static and curses options PR: 232127 Submitted by: Brian Callahan <bcallah@openbsd.org> (maintainer) Approved by: ports-secteam (implicit) (MFH due to bug fixes) Modified: branches/2018Q4/shells/oksh/Makefile branches/2018Q4/shells/oksh/distinfo Directory Properties: branches/2018Q4/ (props changed) Modified: branches/2018Q4/shells/oksh/Makefile ============================================================================== --- branches/2018Q4/shells/oksh/Makefile Thu Oct 11 15:17:31 2018 (r481834) +++ branches/2018Q4/shells/oksh/Makefile Thu Oct 11 15:26:33 2018 (r481835) @@ -1,16 +1,34 @@ # $FreeBSD$ PORTNAME= oksh -DISTVERSION= 20180401 +DISTVERSION= 20181009 CATEGORIES= shells -MASTER_SITES= https://devio.us/~bcallah/oksh/ +MASTER_SITES= https://mirrors.nycbug.org/pub/distfiles/ MAINTAINER= bcallah@openbsd.org COMMENT= Portable OpenBSD Korn shell LICENSE= PD +OPTIONS_DEFINE= CURSES STATIC +OPTIONS_DEFAULT= CURSES + +CURSES_DESC= Use ncurses for screen clearing routines +CURSES_USES= ncurses + HAS_CONFIGURE= yes + +.include <bsd.port.options.mk> + +.if ${PORT_OPTIONS:MSTATIC} +CONFIGURE_ARGS+= --enable-static +.endif + +.if ${PORT_OPTIONS:MCURSES} +CONFIGURE_ARGS+= --enable-curses +.else +CONFIGURE_ARGS+= --disable-curses +.endif do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin Modified: branches/2018Q4/shells/oksh/distinfo ============================================================================== --- branches/2018Q4/shells/oksh/distinfo Thu Oct 11 15:17:31 2018 (r481834) +++ branches/2018Q4/shells/oksh/distinfo Thu Oct 11 15:26:33 2018 (r481835) @@ -1,3 +1,3 @@ -TIMESTAMP = 1522955962 -SHA256 (oksh-20180401.tar.gz) = 3001fed530602c6f6c5d9da8b6c8bf7f0c59d048fe5ed1f168ac7449b0f49914 -SIZE (oksh-20180401.tar.gz) = 296836 +TIMESTAMP = 1539111609 +SHA256 (oksh-20181009.tar.gz) = 35dbd911ca129742e5a6cc31cd91055c2c26d895f19e9bafedf5d50b222d1197 +SIZE (oksh-20181009.tar.gz) = 301213
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201810111526.w9BFQY8g048246>