d263920cb1
small issues but works well enough, they can be fixed in-tree. An amazingly cute game of popping bubbles. Full-featured, colorful animated penguin eye candy, 100 levels of 1p game, hours and hours of 2p game, a level-editor, 3 professional quality 20-channels musics, 15 stereo sound effects, 7 unique graphical transition effects.
56 lines
1.2 KiB
Makefile
56 lines
1.2 KiB
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2009/06/02 22:07:24 sthen Exp $
|
|
|
|
SHARED_ONLY = Yes
|
|
|
|
COMMENT-main = bubble popping game, like puzzle bobble
|
|
COMMENT-server = server for the frozen-bubble bubble popping game
|
|
|
|
VER = 2.2.0
|
|
DISTNAME = frozen-bubble-${VER}
|
|
PKGNAME-main = ${DISTNAME}
|
|
PKGNAME-server = frozen-bubble-server-${VER}
|
|
CATEGORIES = games
|
|
|
|
HOMEPAGE = http://www.frozen-bubble.org
|
|
MAINTAINER = James Wright <jamesw@bsdhosting.co.za>
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MASTER_SITES = ${HOMEPAGE}/data/
|
|
EXTRACT_SUFX = .tar.bz2
|
|
|
|
USE_GMAKE = Yes
|
|
|
|
# No regress tests here
|
|
NO_REGRESS = Yes
|
|
|
|
MODULES = perl converters/libiconv devel/gettext
|
|
|
|
BUILD_DEPENDS = ${RUN_DEPENDS-main} \
|
|
${RUN_DEPENDS-server}
|
|
|
|
RUN_DEPENDS-main = ::devel/sdl \
|
|
::devel/sdl-mixer \
|
|
::devel/sdl-pango \
|
|
::devel/p5-Locale-gettext \
|
|
::devel/p5-SDL
|
|
|
|
LIB_DEPENDS-main = SDL::devel/sdl \
|
|
SDL_Pango::devel/sdl-pango \
|
|
SDL_mixer::devel/sdl-mixer \
|
|
glib-2.0,gmodule-2.0,gobject-2.0::devel/glib2
|
|
|
|
LIB_DEPENDS-server = glib-2.0::devel/glib2
|
|
|
|
WANTLIB = iconv intl
|
|
WANTLIB-main = ${WANTLIB} X11 m pango-1.0 pthread
|
|
WANTLIB-server = ${WANTLIB} c
|
|
|
|
MULTI_PACKAGES = -main -server
|
|
|
|
.include <bsd.port.mk>
|