mirror of
https://github.com/netbirdio/FreeBSD-ports.git
synced 2026-05-22 18:42:42 -07:00
47 lines
952 B
Makefile
47 lines
952 B
Makefile
PORTNAME= oksh
|
|
DISTVERSION= 7.7
|
|
PORTEPOCH= 1
|
|
CATEGORIES= shells
|
|
MASTER_SITES= https://github.com/ibara/oksh/releases/download/oksh-${DISTVERSION}/
|
|
|
|
MAINTAINER= pkubaj@FreeBSD.org
|
|
COMMENT= Portable OpenBSD Korn shell
|
|
WWW= https://github.com/ibara/oksh
|
|
|
|
LICENSE= PD
|
|
|
|
FLAVORS= dynamic static
|
|
FLAVOR?= ${FLAVORS:[1]}
|
|
|
|
static_PKGNAMESUFFIX= -static
|
|
.if ${FLAVOR} == static
|
|
COMMENT+= (rescue(8) version)
|
|
.endif
|
|
|
|
HAS_CONFIGURE= yes
|
|
.if ${FLAVOR} == static
|
|
CONFIGURE_ARGS+= --enable-static
|
|
PLIST= /dev/null
|
|
PLIST_FILES= "@shell /rescue/oksh"
|
|
.endif
|
|
|
|
PIE_UNSAFE= yes
|
|
|
|
OPTIONS_DEFINE= CURSES SMALL
|
|
OPTIONS_DEFAULT= CURSES
|
|
|
|
CURSES_DESC= Use ncurses for screen clearing routines
|
|
SMALL_DESC= Create smaller oksh binary
|
|
|
|
CURSES_USES= ncurses
|
|
CURSES_CONFIGURE_ENABLE= curses
|
|
SMALL_CONFIGURE_ENABLE= small
|
|
|
|
.if ${FLAVOR} == static
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}/rescue
|
|
${INSTALL_PROGRAM} ${WRKSRC}/oksh ${STAGEDIR}/rescue
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|