svn commit: r481781 - head/shells/oksh
Steve Wills
swills at FreeBSD.org
Thu Oct 11 02:33:21 UTC 2018
Author: swills
Date: Thu Oct 11 02:33:20 2018
New Revision: 481781
URL: https://svnweb.freebsd.org/changeset/ports/481781
Log:
shells/oksh: update to 20181009
While here, add static and curses options
PR: 232127
Submitted by: Brian Callahan <bcallah at openbsd.org> (maintainer)
Modified:
head/shells/oksh/Makefile (contents, props changed)
head/shells/oksh/distinfo (contents, props changed)
Modified: head/shells/oksh/Makefile
==============================================================================
--- head/shells/oksh/Makefile Thu Oct 11 02:23:26 2018 (r481780)
+++ head/shells/oksh/Makefile Thu Oct 11 02:33:20 2018 (r481781)
@@ -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 at 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: head/shells/oksh/distinfo
==============================================================================
--- head/shells/oksh/distinfo Thu Oct 11 02:23:26 2018 (r481780)
+++ head/shells/oksh/distinfo Thu Oct 11 02:33:20 2018 (r481781)
@@ -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
More information about the svn-ports-head
mailing list