diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2014-02-24 21:17:05 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2014-02-24 21:17:05 +0800 |
commit | 5816901f94fbb084c9a801cbddacc39412e5c80e (patch) | |
tree | 2c8ababc8fa1d7adc7dd6c35885a37d3a06428bd /net | |
parent | 26f349578c1f7728598e4a923509c62e32b47b3f (diff) | |
download | freebsd-ports-gnome-5816901f94fbb084c9a801cbddacc39412e5c80e.tar.gz freebsd-ports-gnome-5816901f94fbb084c9a801cbddacc39412e5c80e.tar.zst freebsd-ports-gnome-5816901f94fbb084c9a801cbddacc39412e5c80e.zip |
- Support staging
- Respect CC
- Respect CFLAGS
Diffstat (limited to 'net')
-rw-r--r-- | net/e169-stats/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/net/e169-stats/Makefile b/net/e169-stats/Makefile index 61c0f9f6327b..044d8ed16ea3 100644 --- a/net/e169-stats/Makefile +++ b/net/e169-stats/Makefile @@ -12,8 +12,10 @@ COMMENT= Curses realtime statistics for the Huawei E169 modem PLIST_FILES= bin/e169-stats -NO_STAGE= yes +do-build: + ${CC} ${CFLAGS} -o ${WRKSRC}/e169-stats ${WRKSRC}/e169-stats.c -lcurses + do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/e169-stats ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/e169-stats ${STAGEDIR}${PREFIX}/bin .include <bsd.port.mk> |