- Update MASTER_SITES and WWW: line
- Add LICENSE - Add MAKE_JOBS_UNSAFE PR: 176546 Submitted by: Ports Fury
This commit is contained in:
parent
4e58470ba3
commit
20fba8f7f2
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=313252
2 changed files with 36 additions and 25 deletions
|
@ -3,45 +3,56 @@
|
||||||
|
|
||||||
PORTNAME= aee
|
PORTNAME= aee
|
||||||
PORTVERSION= 2.2.15b
|
PORTVERSION= 2.2.15b
|
||||||
PORTREVISION= 1
|
PORTREVISION= 2
|
||||||
CATEGORIES= editors
|
CATEGORIES= editors
|
||||||
MASTER_SITES= http://mahon.cwx.net/sources/
|
MASTER_SITES= http://www.users.uswest.net/~hmahon/sources/
|
||||||
|
|
||||||
MAINTAINER= ports@FreeBSD.org
|
MAINTAINER= ports@FreeBSD.org
|
||||||
COMMENT= Easy editor with both curses and X11 interfaces
|
COMMENT= Easy editor with both curses and X11 interfaces
|
||||||
|
|
||||||
|
LICENSE= ART10
|
||||||
|
|
||||||
OPTIONS_DEFINE= XAE
|
OPTIONS_DEFINE= XAE
|
||||||
XAE_DESC= Build X11 version 'xae'
|
XAE_DESC= Build X11 version 'xae'
|
||||||
|
|
||||||
.include <bsd.port.options.mk>
|
MAKE_JOBS_UNSAFE= yes
|
||||||
|
|
||||||
.if !${PORT_OPTIONS:MXAE}
|
|
||||||
ALL_TARGET= main
|
|
||||||
PLIST_SUB= XAE="@comment "
|
|
||||||
.else
|
|
||||||
USE_XORG= x11
|
|
||||||
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
|
MAN1= aee.1
|
||||||
|
PLIST_FILES= bin/aee bin/rae %%DATADIR%%/help.ae
|
||||||
|
PLIST_DIRS= %%DATADIR%%
|
||||||
|
|
||||||
|
.include <bsd.port.options.mk>
|
||||||
|
|
||||||
|
.if ${PORT_OPTIONS:MXAE}
|
||||||
|
USE_XORG= x11
|
||||||
|
ALL_TARGET= both
|
||||||
|
PLIST_FILES+= bin/xae bin/rxae
|
||||||
|
DESKTOP_ENTRIES="Xae" "" "" "xae" "" false
|
||||||
|
.else
|
||||||
|
ALL_TARGET= main
|
||||||
|
.endif
|
||||||
|
|
||||||
post-patch:
|
post-patch:
|
||||||
@${REINPLACE_CMD} -e 's|cc|${CC}|g' ${WRKSRC}/create.mk.aee
|
.for i in create.mk.aee create.mk.xae
|
||||||
@${REINPLACE_CMD} -e 's|cc|${CC}|g' ${WRKSRC}/create.mk.xae
|
@${REINPLACE_CMD} -e \
|
||||||
@${REINPLACE_CMD} -e 's|/usr/X11R6|${LOCALBASE}|g' \
|
's|cc|${CC}|g ; \
|
||||||
${WRKSRC}/create.mk.xae
|
s|"-s"|""|g ; \
|
||||||
|
s|/usr/X11R6|${LOCALBASE}|g' ${WRKSRC}/${i}
|
||||||
|
.endfor
|
||||||
|
.for i in aee.1 localize.c
|
||||||
|
@${REINPLACE_CMD} -e \
|
||||||
|
's|/usr/local/lib|${DATADIR}|g' ${WRKSRC}/${i}
|
||||||
|
.endfor
|
||||||
|
|
||||||
do-install:
|
do-install:
|
||||||
${INSTALL_PROGRAM} ${WRKSRC}/aee ${PREFIX}/bin
|
(cd ${WRKSRC} && ${INSTALL_PROGRAM} aee ${PREFIX}/bin)
|
||||||
${LN} ${PREFIX}/bin/aee ${PREFIX}/bin/rae
|
(cd ${PREFIX}/bin && ${LN} aee rae)
|
||||||
${INSTALL_MAN} ${WRKSRC}/aee.1 ${PREFIX}/man/man1
|
(cd ${WRKSRC} && ${INSTALL_MAN} aee.1 ${MANPREFIX}/man/man1)
|
||||||
${INSTALL_DATA} ${WRKSRC}/help.ae ${PREFIX}/lib
|
@${MKDIR} ${DATADIR}
|
||||||
|
(cd ${WRKSRC} && ${INSTALL_DATA} help.ae ${DATADIR})
|
||||||
.if ${PORT_OPTIONS:MXAE}
|
.if ${PORT_OPTIONS:MXAE}
|
||||||
${INSTALL_PROGRAM} ${WRKSRC}/xae ${PREFIX}/bin
|
(cd ${WRKSRC} && ${INSTALL_PROGRAM} xae ${PREFIX}/bin)
|
||||||
${LN} ${PREFIX}/bin/xae ${PREFIX}/bin/rxae
|
(cd ${PREFIX}/bin && ${LN} xae rxae)
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
.include <bsd.port.mk>
|
.include <bsd.port.mk>
|
||||||
|
|
|
@ -8,4 +8,4 @@ multiple edit buffers.
|
||||||
aee is a superset of the "Easy Editor" (ee) that is part of the
|
aee is a superset of the "Easy Editor" (ee) that is part of the
|
||||||
FreeBSD base system.
|
FreeBSD base system.
|
||||||
|
|
||||||
WWW: http://mahon.cwx.net/
|
WWW: http://www.users.uswest.net/~hmahon/
|
||||||
|
|
Loading…
Reference in a new issue