diff options
author | wxs <wxs@FreeBSD.org> | 2010-01-11 22:20:22 +0800 |
---|---|---|
committer | wxs <wxs@FreeBSD.org> | 2010-01-11 22:20:22 +0800 |
commit | dcf2fd8c091883511087b6f3505dbc80710f13ce (patch) | |
tree | 32f3864e016d38074bee913bb75f7baefe3400bc /editors | |
parent | dd4f50c9e5e0dced0674edaf674238ff3a9d50fd (diff) | |
download | freebsd-ports-gnome-dcf2fd8c091883511087b6f3505dbc80710f13ce.tar.gz freebsd-ports-gnome-dcf2fd8c091883511087b6f3505dbc80710f13ce.tar.zst freebsd-ports-gnome-dcf2fd8c091883511087b6f3505dbc80710f13ce.zip |
- Respect CC
- Fix build with X option
- Pass maintainer to submitter
PR: ports/142344
Submitted by: Rob Farmer <rfarmer@predatorlabs.net>
Diffstat (limited to 'editors')
-rw-r--r-- | editors/aee/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/editors/aee/Makefile b/editors/aee/Makefile index 5014c372e71b..5c5f749fbb81 100644 --- a/editors/aee/Makefile +++ b/editors/aee/Makefile @@ -11,7 +11,7 @@ PORTREVISION= 1 CATEGORIES= editors MASTER_SITES= http://mahon.cwx.net/sources/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= rfarmer@predatorlabs.net COMMENT= An easy editor with both curses and X11 interfaces OPTIONS= XAE "Build X11 version 'xae'" off @@ -31,6 +31,12 @@ PLIST_FILES= bin/aee bin/rae lib/help.ae %%XAE%%bin/xae %%XAE%%bin/rxae MAN1= aee.1 +post-patch: + @${REINPLACE_CMD} -e 's|cc|${CC}|g' ${WRKSRC}/create.mk.aee + @${REINPLACE_CMD} -e 's|cc|${CC}|g' ${WRKSRC}/create.mk.xae + @${REINPLACE_CMD} -e 's|/usr/X11R6|${LOCALBASE}|g' \ + ${WRKSRC}/create.mk.xae + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/aee ${PREFIX}/bin ${LN} ${PREFIX}/bin/aee ${PREFIX}/bin/rae |