mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-22 08:58:47 +00:00
b760897dde
Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D10845
35 lines
750 B
Makefile
35 lines
750 B
Makefile
# Created by: Rusmir Dusko <nemysis@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= radius-engine
|
|
PORTVERSION= 1.1
|
|
PORTREVISION= 5
|
|
CATEGORIES= graphics devel
|
|
MASTER_SITES= SF/${PORTNAME}/
|
|
|
|
MAINTAINER= koalative@gmail.com
|
|
COMMENT= Lua script-based 2D engine built on top of OpenGL and SDL
|
|
|
|
LICENSE= MIT
|
|
|
|
LIB_DEPENDS= liblua-5.1.so:lang/lua51 \
|
|
libpng.so:graphics/png \
|
|
libphysfs.so.1:devel/physfs
|
|
|
|
USES= pathfix pkgconfig
|
|
USE_SDL= sdl sound
|
|
USE_GL= glu
|
|
GNU_CONFIGURE= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LIBS+= -L${LOCALBASE}/lib
|
|
|
|
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>
|