f8ca79a47f
The goal of Entomologist is to provide a cross-platform, open source bug tracker client that works with multiple bug trackers (Bugzilla, Launchpad, Mantis, Trac, etc) and provides an easier way to work with bugs on the desktop. With tweaks and ok jasper@ & 'what he said' ajacoutot@
36 lines
858 B
Makefile
36 lines
858 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2011/04/12 19:33:56 landry Exp $
|
|
|
|
COMMENT = bug tracker client
|
|
DISTNAME = entomologist-0.6
|
|
CATEGORIES = productivity
|
|
|
|
MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=entomologist/}
|
|
HOMEPAGE = http://entomologist.sourceforge.net
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MODULES = x11/qt4
|
|
RUN_DEPENDS = devel/desktop-file-utils \
|
|
x11/qt4,-sqlite \
|
|
x11/gtk+2
|
|
WANTLIB += QtGui QtNetwork QtSql QtXml c m pthread stdc++
|
|
|
|
MAKE_FLAGS = CXX=${CXX} \
|
|
QMAKE_CXXFLAGS="${CXXFLAGS} -g"
|
|
FAKE_FLAGS = INSTALL_ROOT=${DESTDIR}
|
|
CONFIGURE_ARGS = PREFIX=${PREFIX}
|
|
NO_REGRESS = Yes
|
|
|
|
pre-configure:
|
|
${SUBST_CMD} ${WRKSRC}/main.cpp
|
|
|
|
do-configure:
|
|
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${CONFIGURE_ENV} \
|
|
${LOCALBASE}/bin/qmake4 ${CONFIGURE_ARGS}
|
|
|
|
.include <bsd.port.mk>
|