diff options
author | garga <garga@FreeBSD.org> | 2010-09-20 22:08:06 +0800 |
---|---|---|
committer | garga <garga@FreeBSD.org> | 2010-09-20 22:08:06 +0800 |
commit | 633397efc88ddfa42f1ca891a17dda515218a53a (patch) | |
tree | 01677e01de126d75a89b0396090861bb3b80e389 /lang | |
parent | 494c81793129b1af4c292f52330b82b62fc3f970 (diff) | |
download | freebsd-ports-gnome-633397efc88ddfa42f1ca891a17dda515218a53a.tar.gz freebsd-ports-gnome-633397efc88ddfa42f1ca891a17dda515218a53a.tar.zst freebsd-ports-gnome-633397efc88ddfa42f1ca891a17dda515218a53a.zip |
- Make lua respect CFLAGS= defined on /etc/make.conf and still plus -fPIC on
necessary archs.
- Remove unecessary dependency gmake
- Bump PORTREVISION because of gmake removal
Thanks to: johans@
Diffstat (limited to 'lang')
-rw-r--r-- | lang/lua/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/lua/Makefile b/lang/lua/Makefile index 846b37094c9d..c32b9a89ee52 100644 --- a/lang/lua/Makefile +++ b/lang/lua/Makefile @@ -7,7 +7,7 @@ PORTNAME= lua PORTVERSION= 5.1.4 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= lang MASTER_SITES= http://www.lua.org/ftp/ \ ftp://ftp.tecgraf.puc-rio.br/pub/lua/ \ @@ -30,7 +30,7 @@ USE_GNOME= pkgconfig USE_LDCONFIG= yes MAKE_JOBS_SAFE= yes MAKE_ENV= LUA_SONAME="liblua-${LUA_VER}.so.${LUA_VER_SH}" -USE_GMAKE= yes +MAKE_ARGS= CFLAGS="${CFLAGS}" MAN1= lua-${LUA_VER}.1 luac-${LUA_VER}.1 DOCSDIR= ${PREFIX}/share/doc/${LUA_SUBDIR} |