GNOME Mastermind is a free implementation of the well-known Mastermind Game. The goal is to break a hidden color code following the hints that the game gives us. Note that the port doesn't specifically depend on gnome libs..
40 lines
1.1 KiB
Makefile
40 lines
1.1 KiB
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2009/11/27 17:40:27 landry Exp $
|
|
|
|
COMMENT = Mastermind reflexion game
|
|
|
|
GNOME_PROJECT = gnome-mastermind
|
|
GNOME_VERSION = 0.3.1
|
|
CATEGORIES = games
|
|
|
|
HOMEPAGE = http://www.autistici.org/gnome-mastermind/
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM = Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MASTER_SITES = http://download.gna.org/gnome-mastermind/
|
|
|
|
MODULES = devel/gettext \
|
|
x11/gnome \
|
|
devel/gconf2
|
|
|
|
DESKTOP_FILES = Yes
|
|
LIB_DEPENDS = gdk-x11-2.0.>=1000,gdk_pixbuf-2.0.>=1000,gtk-x11-2.0.>=1000::x11/gtk+2
|
|
RUN_DEPENDS += ::x11/gnome/librsvg
|
|
|
|
MODGNOME_HELP_FILES = Yes
|
|
CONFIGURE_STYLE = gnu
|
|
CONFIGURE_ENV += CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
WANTLIB += ORBit-2 X11 Xau Xcomposite Xcursor Xdamage Xdmcp Xext
|
|
WANTLIB += Xfixes Xi Xinerama Xrandr Xrender atk-1.0 c cairo dbus-1
|
|
WANTLIB += dbus-glib-1 expat fontconfig freetype gio-2.0 glib-2.0
|
|
WANTLIB += glitz gmodule-2.0 gobject-2.0 gthread-2.0 m pango-1.0
|
|
WANTLIB += pangocairo-1.0 pangoft2-1.0 pcre pixman-1 png pthread
|
|
WANTLIB += pthread-stubs xcb z
|
|
|
|
.include <bsd.port.mk>
|