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@
46 lines
875 B
Makefile
46 lines
875 B
Makefile
# $OpenBSD: Makefile,v 1.19 2012/06/15 08:32:17 ajacoutot Exp $
|
|
|
|
COMMENT= GTD organizer for GNOME
|
|
|
|
GNOME_PROJECT= gtg
|
|
GNOME_VERSION= 0.2.4
|
|
REVISION= 4
|
|
|
|
CATEGORIES= productivity
|
|
|
|
HOMEPAGE= http://gtg.fritalk.com/
|
|
|
|
# GPLv3+
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= http://edge.launchpad.net/gtg/${VERSION:C/^([0-9]+\.[0-9]+).*/\1/}/${VERSION}/+download/
|
|
EXTRACT_SUFX= .tar.gz
|
|
|
|
MODULES= lang/python \
|
|
x11/gnome
|
|
|
|
RUN_DEPENDS= devel/py-configobj \
|
|
devel/py-simplejson \
|
|
devel/py-xdg \
|
|
x11/dbus-python \
|
|
x11/py-gtk2
|
|
BUILD_DEPENDS= x11/py-gtk2
|
|
|
|
MODGNOME_DESKTOP_FILE= Yes
|
|
MODGNOME_ICON_CACHE= Yes
|
|
|
|
USE_GROFF= Yes
|
|
NO_REGRESS= Yes
|
|
|
|
SUBST_VARS= VERSION
|
|
|
|
pre-configure:
|
|
${SUBST_CMD} ${WRKSRC}/gtg \
|
|
${WRKSRC}/GTG/__init__.py \
|
|
${WRKSRC}/GTG/gtg.py
|
|
|
|
.include <bsd.port.mk>
|