freebsd-ports/editors/aee/Makefile
Andrej Zverev 04b99f7cc7 - Change my e-mail
Approved by: sem (mentor)
2005-10-03 12:55:25 +00:00

43 lines
958 B
Makefile

# New ports collection makefile for: aee
# Date created: 19 Aug 1999
# Whom: Kelly Yancey <kbyanc@posi.net>
#
# $FreeBSD$
#
PORTNAME= aee
PORTVERSION= 2.2.15b
CATEGORIES= editors
MASTER_SITES= http://mahon.cwx.net/sources/
MAINTAINER= az@FreeBSD.org
COMMENT= An easy editor with both curses and X11 interfaces
OPTIONS= XAE "Build X11 version 'xae'" off
.include <bsd.port.pre.mk>
.if !defined(WITH_XAE)
ALL_TARGET= main
PLIST_SUB= XAE="@comment "
.else
USE_XLIB= yes
ALL_TARGET= both
PLIST_SUB= XAE=""
.endif
PLIST_FILES= bin/aee bin/rae lib/help.ae %%XAE%%bin/xae %%XAE%%bin/rxae
MAN1= aee.1
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/aee ${PREFIX}/bin
${LN} ${PREFIX}/bin/aee ${PREFIX}/bin/rae
${INSTALL_MAN} ${WRKSRC}/aee.1 ${PREFIX}/man/man1
${INSTALL_DATA} ${WRKSRC}/help.ae ${PREFIX}/lib
.if defined(WITH_XAE)
${INSTALL_PROGRAM} ${WRKSRC}/xae ${PREFIX}/bin
${LN} ${PREFIX}/bin/xae ${PREFIX}/bin/rxae
.endif
.include <bsd.port.post.mk>