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@
41 lines
978 B
Makefile
41 lines
978 B
Makefile
# $OpenBSD: Makefile,v 1.4 2012/06/15 08:32:18 ajacoutot Exp $
|
|
|
|
SHARED_ONLY= Yes
|
|
|
|
COMMENT= simple Qt4-based browser using WebKit
|
|
|
|
ONLY_FOR_ARCHS= ${GCC4_ARCHS}
|
|
|
|
DISTNAME= arora-0.11.0
|
|
REVISION= 2
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://arora.googlecode.com/files/
|
|
|
|
HOMEPAGE= http://code.google.com/p/arora/
|
|
|
|
MAINTAINER= Brad Smith <brad@comstyle.com>
|
|
|
|
# GPLv2+
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
WANTLIB= QtGui QtNetwork QtScript QtSql QtWebKit c m pthread stdc++
|
|
|
|
MODULES= x11/qt4
|
|
RUN_DEPENDS= devel/desktop-file-utils \
|
|
multimedia/gstreamer-0.10/plugins-bad \
|
|
multimedia/gstreamer-0.10/plugins-ffmpeg \
|
|
multimedia/gstreamer-0.10/plugins-good \
|
|
x11/gtk+2,-guic
|
|
|
|
MAKE_FLAGS= CC="${CC}" CXX="${CXX}" LINK="${CXX}"
|
|
FAKE_FLAGS= INSTALL_FILE="${INSTALL_DATA}" INSTALL_PROGRAM="${INSTALL_PROGRAM}"
|
|
|
|
DESTDIRNAME= INSTALL_ROOT
|
|
|
|
do-configure:
|
|
@cd ${WRKSRC} && ${LOCALBASE}/bin/qmake4 -r
|
|
|
|
.include <bsd.port.mk>
|