1999-09-25 06:55:50 +02:00
|
|
|
# New ports collection makefile for: aee
|
|
|
|
# Date created: 19 Aug 1999
|
|
|
|
# Whom: Kelly Yancey <kbyanc@posi.net>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
2000-04-14 02:25:54 +02:00
|
|
|
PORTNAME= aee
|
2003-05-22 05:56:21 +02:00
|
|
|
PORTVERSION= 2.2.15b
|
2008-03-23 12:11:33 +01:00
|
|
|
PORTREVISION= 1
|
1999-09-25 06:55:50 +02:00
|
|
|
CATEGORIES= editors
|
2001-03-05 04:45:17 +01:00
|
|
|
MASTER_SITES= http://mahon.cwx.net/sources/
|
1999-09-25 06:55:50 +02:00
|
|
|
|
2008-06-24 09:11:00 +02:00
|
|
|
MAINTAINER= ports@FreeBSD.org
|
2003-03-07 07:14:21 +01:00
|
|
|
COMMENT= An easy editor with both curses and X11 interfaces
|
1999-09-25 06:55:50 +02:00
|
|
|
|
2005-04-27 08:57:49 +02:00
|
|
|
OPTIONS= XAE "Build X11 version 'xae'" off
|
|
|
|
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
|
|
|
.if !defined(WITH_XAE)
|
1999-09-25 06:55:50 +02:00
|
|
|
ALL_TARGET= main
|
2005-04-27 08:57:49 +02:00
|
|
|
PLIST_SUB= XAE="@comment "
|
1999-09-25 06:55:50 +02:00
|
|
|
.else
|
2008-03-23 12:11:33 +01:00
|
|
|
USE_XORG= x11
|
1999-09-25 06:55:50 +02:00
|
|
|
ALL_TARGET= both
|
2005-04-27 08:57:49 +02:00
|
|
|
PLIST_SUB= XAE=""
|
1999-09-25 06:55:50 +02:00
|
|
|
.endif
|
|
|
|
|
2005-07-19 12:02:24 +02:00
|
|
|
PLIST_FILES= bin/aee bin/rae lib/help.ae %%XAE%%bin/xae %%XAE%%bin/rxae
|
|
|
|
|
1999-09-25 06:55:50 +02:00
|
|
|
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
|
2005-04-27 08:57:49 +02:00
|
|
|
.if defined(WITH_XAE)
|
1999-09-25 06:55:50 +02:00
|
|
|
${INSTALL_PROGRAM} ${WRKSRC}/xae ${PREFIX}/bin
|
|
|
|
${LN} ${PREFIX}/bin/xae ${PREFIX}/bin/rxae
|
|
|
|
.endif
|
|
|
|
|
2005-04-27 08:57:49 +02:00
|
|
|
.include <bsd.port.post.mk>
|