a1b7c39eb5
Don't redirect errors to /dev/null and don't return true(1) unconditionally. Instead, don't check for the existence of index.theme. This will allow us to catch errors that may be happening because of a missing dependency in the chain. Some hidden issues may appear, in which case please contact me. discussed with and ok blind jasper@
35 lines
982 B
Makefile
35 lines
982 B
Makefile
# $OpenBSD: Makefile,v 1.6 2012/06/15 08:32:15 ajacoutot Exp $
|
|
|
|
COMMENT = collection of puzzles games
|
|
|
|
DISTNAME = puzzles-r9534
|
|
PKGNAME = ${DISTNAME:S/-r/-/}
|
|
REVISION = 0
|
|
CATEGORIES = games
|
|
|
|
HOMEPAGE = http://www.chiark.greenend.org.uk/~sgtatham/puzzles/
|
|
# distfile cksum changes daily
|
|
MASTER_SITES = http://spacehopper.org/mirrors/
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
USE_GMAKE = yes
|
|
MODULES = devel/gettext
|
|
LIB_DEPENDS = x11/gtk+2
|
|
RUN_DEPENDS = devel/desktop-file-utils devel/xdg-utils \
|
|
x11/gtk+2,-guic
|
|
MAKE_FLAGS = CC="${CC}"
|
|
|
|
WANTLIB += atk-1.0 gdk_pixbuf-2.0 gio-2.0 glib-2.0
|
|
WANTLIB += gobject-2.0 pango-1.0 pangocairo-1.0 pangoft2-1.0
|
|
WANTLIB += GL X11 Xcomposite Xcursor Xdamage Xext Xfixes Xi Xinerama
|
|
WANTLIB += Xrandr Xrender c cairo expat fontconfig freetype gdk-x11-2.0
|
|
WANTLIB += gtk-x11-2.0 m pixman-1 png pthread pthread-stubs
|
|
WANTLIB += xcb xcb-render xcb-shm z
|
|
|
|
.include <bsd.port.mk>
|