mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-14 07:43:06 +00:00
ff57a36a58
- USES=libtool. - Strip library. - Replace patch+reinplace with a single reinplace. - Remove a patch so we use the upstream library name again. Bump PORTREVISION on all dependent ports. games/alephone: - USES=gmake tar:bzip2. - Remove unneeded PKG_CONFIG variable. - Staging. - New LIB_DEPENDS syntax. games/asc: - USES=libtool. games/gltron: - New LIB_DEPENDS syntax. - USES=gmake. - Remove references to PTHREAD_CFLAGS and PTHREAD_LIBS. - Use option helpers. - Staging. lang/kroc: (still BROKEN due to use of "python" command) - New LIB_DEPENDS syntax. - USES=pathfix tar:bzip2. - Staging. - Replace patches with post-patch. - Replace MAKE with MAKE_CMD. lang/smalltalk: - USES=libtool tar:xz. - Use BROKEN_sparc64.
35 lines
788 B
Makefile
35 lines
788 B
Makefile
# Created by: nemysis <nemysis@gmx.ch>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= radius-engine
|
|
PORTVERSION= 1.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= graphics devel
|
|
MASTER_SITES= SF/${PORTNAME}/
|
|
|
|
MAINTAINER= nemysis@FreeBSD.org
|
|
COMMENT= Lua script-based 2D engine built on top of OpenGL and SDL
|
|
|
|
LICENSE= MIT
|
|
|
|
LIB_DEPENDS= liblua-5.1.so:${PORTSDIR}/lang/lua \
|
|
libpng15.so:${PORTSDIR}/graphics/png \
|
|
libphysfs.so.1:${PORTSDIR}/devel/physfs
|
|
|
|
USES= pathfix pkgconfig
|
|
USE_SDL= sdl sound
|
|
USE_GL= glu
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib"
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
|
|
PLIST_FILES= include/radius.h \
|
|
lib/libradius-engine.a \
|
|
libdata/pkgconfig/radius-engine.pc
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|lua5.1|lua-5.1|g' \
|
|
${WRKSRC}/acinclude.m4 ${WRKSRC}/configure
|
|
|
|
.include <bsd.port.mk>
|