mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
42 lines
949 B
Makefile
42 lines
949 B
Makefile
# Created by: Ralf S. Engelschall <rse@engelschall.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= iselect
|
|
PORTVERSION= 1.4.0
|
|
CATEGORIES= misc
|
|
MASTER_SITES= ${MASTER_SITE_OSSP}
|
|
MASTER_SITE_SUBDIR= tool/iselect
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Interactive Selection Tool
|
|
|
|
OPTIONS_DEFINE= SLANG
|
|
SLANG_DESC= Link with slang
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
MAN1= iselect.1
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MSLANG}
|
|
LIB_DEPENDS+= slang.2:${PORTSDIR}/devel/libslang2
|
|
CONFIGURE_ARGS+= --with-incdir=${LOCALBASE}/include \
|
|
--with-libdir=${LOCALBASE}/lib
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|^CFLAGS=|#CFLAGS=|g' ${WRKSRC}/configure
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/iselect ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/iselect.1 ${MANPREFIX}/man/man1
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
cd ${WRKSRC}/example && ${FIND} . | \
|
|
${CPIO} -pdm -L -R ${SHAREOWN}:${SHAREGRP} ${EXAMPLESDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|