859d1e7e8e
Update port editors/aee to version 2.2.15b PR: ports/52535 Submitted by: jbozza@thinkburst.com
43 lines
1.0 KiB
Makefile
43 lines
1.0 KiB
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= kbyanc@posi.net
|
|
COMMENT= An easy editor with both curses and X11 interfaces
|
|
|
|
.if !defined(BUILD_XAE)
|
|
ALL_TARGET= main
|
|
pre-fetch:
|
|
@${ECHO}
|
|
@${ECHO} "If you would like to also install the X11 version of aee (xae)"
|
|
@${ECHO} "use 'make install BUILD_XAE=yes'. However, the X11 interface looks"
|
|
@${ECHO} "almost exactly like the text-based curses version."
|
|
@${ECHO}
|
|
.else
|
|
USE_XLIB= yes
|
|
ALL_TARGET= both
|
|
PLIST= ${PKGDIR}/pkg-plist.xae
|
|
.endif
|
|
|
|
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(BUILD_XAE)
|
|
${INSTALL_PROGRAM} ${WRKSRC}/xae ${PREFIX}/bin
|
|
${LN} ${PREFIX}/bin/xae ${PREFIX}/bin/rxae
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|