mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
d0a27f1d94
- Add LICENSE, desktop entry file - Support staging PR: ports/184848 Submitted by: KATO Tsuguru <tkato432@yahoo.com>
33 lines
703 B
Makefile
33 lines
703 B
Makefile
# Created by: Kirill Ponomarew <ponomarew@oberon.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= openglad
|
|
PORTVERSION= 0.98
|
|
PORTREVISION= 8
|
|
CATEGORIES= games
|
|
MASTER_SITES= SF/snowstorm/OpenGlad/Openglad-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= SDL port of an old DOS game called Gladiator
|
|
|
|
LICENSE= GPLv2 # (or later)
|
|
|
|
USES= gmake
|
|
USE_SDL= sdl mixer
|
|
GNU_CONFIGURE= yes
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
DESKTOP_ENTRIES="OpenGlad" "" "" "${PORTNAME}" "" ""
|
|
|
|
NOT_FOR_ARCHS= sparc64
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
's|COPYING INSTALL|INSTALL|' ${WRKSRC}/Makefile.in
|
|
@${REINPLACE_CMD} -e \
|
|
's|/path/to/data/dir|${DATADIR}|' ${WRKSRC}/openglad.cfg
|
|
|
|
.include <bsd.port.mk>
|