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@
47 lines
1.2 KiB
Makefile
47 lines
1.2 KiB
Makefile
# $OpenBSD: Makefile,v 1.4 2012/06/15 08:32:17 ajacoutot Exp $
|
|
|
|
COMMENT = guitar tab editor
|
|
|
|
DISTNAME = kguitar-0.5.1
|
|
REVISION= 2
|
|
|
|
CATEGORIES = multimedia kde
|
|
|
|
HOMEPAGE = http://kguitar.sourceforge.net/
|
|
|
|
MAINTAINER = Pascal Stumpf <Pascal.Stumpf@cubes.de>
|
|
|
|
# GPLv2+; for MusicXML copyright see licenseMusicXML.html
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
WANTLIB += DCOP ICE SM X11 Xext Xfixes Xrender Xt art_lgpl_2 c
|
|
WANTLIB += expat fontconfig freetype idn jpeg kdecore kdefx kdeprint
|
|
WANTLIB += kdesu kdeui kio kparts kwalletclient m png pthread
|
|
WANTLIB += stdc++ util xcb z
|
|
|
|
MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=kguitar/}
|
|
EXTRACT_SUFX = .tar.bz2
|
|
|
|
MODULES = devel/gettext \
|
|
x11/kde
|
|
LIB_DEPENDS = x11/kde/libs3
|
|
RUN_DEPENDS = x11/gtk+2,-guic
|
|
|
|
USE_LIBTOOL = Yes
|
|
CONFIGURE_STYLE = gnu
|
|
CONFIGURE_ARGS += --disable-midisupport \
|
|
--with-qt-dir="${LOCALBASE}" \
|
|
--with-qt-libraries="${LOCALBASE}/lib/qt3" \
|
|
--with-qt-includes="${LOCALBASE}/include/X11/qt3" \
|
|
--with-extra-libs="${LOCALBASE}/lib" \
|
|
--with-extra-includes="${LOCALBASE}/include/libpng"
|
|
|
|
PORTHOME= ${WRKDIR}
|
|
|
|
NO_REGRESS = Yes
|
|
|
|
.include <bsd.port.mk>
|