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@
38 lines
790 B
Makefile
38 lines
790 B
Makefile
# $OpenBSD: Makefile,v 1.17 2012/06/15 08:32:17 ajacoutot Exp $
|
|
|
|
COMMENT= dbus debugger
|
|
|
|
MODPY_EGG_VERSION= 0.1.14
|
|
DISTNAME= d-feet-${MODPY_EGG_VERSION}
|
|
CATEGORIES= sysutils x11
|
|
REVISION= 2
|
|
|
|
HOMEPAGE= http://live.gnome.org/DFeet/
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/d-feet/${MODPY_EGG_VERSION:C/^([0-9]+\.[0-9]+).*/\1/}/}
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
MODULES= lang/python
|
|
MODPY_SETUPTOOLS= Yes
|
|
|
|
BUILD_DEPENDS= x11/py-gtk2
|
|
RUN_DEPENDS= devel/desktop-file-utils \
|
|
x11/dbus-python \
|
|
x11/py-gtk2 \
|
|
x11/gtk+2,-guic
|
|
|
|
MODPY_ADJ_FILES= d-feet
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
pre-configure:
|
|
perl -pi -e 's,/usr/share,${PREFIX}/share,g' ${WRKSRC}/d-feet
|
|
|
|
.include <bsd.port.mk>
|