35 lines
838 B
Makefile
Executable File
35 lines
838 B
Makefile
Executable File
# $OpenBSD: Makefile,v 1.28 2018/06/27 21:03:47 espie Exp $
|
|
|
|
COMMENT = breakout game with many levels, powerups, good graphics
|
|
|
|
DISTNAME = lbreakout2-2.6.5
|
|
CATEGORIES = games x11
|
|
REVISION = 1
|
|
|
|
HOMEPAGE = http://lgames.sourceforge.net/index.php?action=show_project&project=LBreakout2
|
|
|
|
MAINTAINER = Benoit Lecocq <benoit@openbsd.org>
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
WANTLIB = SDL SDL_mixer c iconv intl m png>=9.0 pthread z
|
|
|
|
MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=lgames/}
|
|
|
|
LIB_DEPENDS = devel/sdl-mixer \
|
|
graphics/png
|
|
RUN_DEPENDS = devel/desktop-file-utils
|
|
|
|
USE_GMAKE = Yes
|
|
|
|
LOCALSTATEDIR= ${BASELOCALSTATEDIR}/games
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
CONFIGURE_ARGS += --with-docdir=${PREFIX}/share/doc
|
|
CONFIGURE_ENV = CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib" \
|
|
LIBS="-lintl -liconv"
|
|
|
|
.include <bsd.port.mk>
|