a0ca22aa14
PR: ports/79959 Submitted by: Vasil Dimov <vd@datamax.bg>
44 lines
889 B
Makefile
44 lines
889 B
Makefile
# New ports collection makefile for: motor
|
|
# Date created: 20 February 2001
|
|
# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= motor
|
|
PORTVERSION= 3.4.0
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://konst.org.ua/download/
|
|
|
|
MAINTAINER= ale@FreeBSD.org
|
|
COMMENT= A powerful text mode based programming IDE
|
|
|
|
USE_GMAKE= yes
|
|
USE_ICONV= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-libiconv-prefix=${LOCALBASE}
|
|
.if !defined(WITHOUT_NLS)
|
|
USE_GETTEXT= yes
|
|
CONFIGURE_ARGS+=--with-libintl-prefix=${LOCALBASE}
|
|
PLIST_SUB= NLS=""
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-nls
|
|
PLIST_SUB= NLS="@comment "
|
|
.endif
|
|
|
|
MAN1= motor.1
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} < 400010
|
|
LIB_DEPENDS+= ncurses.5:${PORTSDIR}/devel/ncurses
|
|
.endif
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
post-install:
|
|
@${MKDIR} ${DOCSDIR}
|
|
@(cd ${WRKSRC} ; ${INSTALL_DATA} FAQ README ${DOCSDIR})
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|