diff options
author | rakuco <rakuco@FreeBSD.org> | 2015-04-07 02:55:37 +0800 |
---|---|---|
committer | rakuco <rakuco@FreeBSD.org> | 2015-04-07 02:55:37 +0800 |
commit | 8387afde42f77141d386dd89451d33fc1cfcda05 (patch) | |
tree | 2dc3e851d96060f264361c4ff211647caa9cc08b /deskutils/strigi | |
parent | 139b8df88ed9097af02a69a0747ff542b4f063dc (diff) | |
download | freebsd-ports-gnome-8387afde42f77141d386dd89451d33fc1cfcda05.tar.gz freebsd-ports-gnome-8387afde42f77141d386dd89451d33fc1cfcda05.tar.zst freebsd-ports-gnome-8387afde42f77141d386dd89451d33fc1cfcda05.zip |
Convert to USES=metaport, take 2.
strigi's Makefile.common checks for NO_BUILD, so it has to be defined prior
to its inclusion; split the bsd.port.mk into bsd.port.{pre,post}.mk for
that.
Diffstat (limited to 'deskutils/strigi')
-rw-r--r-- | deskutils/strigi/Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/deskutils/strigi/Makefile b/deskutils/strigi/Makefile index c195452d1dbf..cbf73c3ce0f6 100644 --- a/deskutils/strigi/Makefile +++ b/deskutils/strigi/Makefile @@ -5,21 +5,18 @@ PORTNAME= strigi PORTVERSION= ${STRIGI_VERSION} PORTREVISION= 2 CATEGORIES= deskutils -DISTFILES= # MAINTAINER= kde@FreeBSD.org COMMENT= Strigi desktop search (meta port) USE_KDE4= strigi_run -NO_BUILD= yes -NO_MTREE= yes -NO_INSTALL= yes +USES= metaport OPTIONS_DEFINE= CLIENT DAEMON UTILITIES OPTIONS_DEFAULT= ${OPTIONS_DEFINE} +.include <bsd.port.pre.mk> .include <${.CURDIR}/Makefile.common> -.include <bsd.port.options.mk> .if ${PORT_OPTIONS:MCLIENT} RUN_DEPENDS+= ${LOCALBASE}/bin/strigiclient:${PORTSDIR}/deskutils/strigiclient @@ -33,4 +30,4 @@ RUN_DEPENDS+= ${LOCALBASE}/bin/strigidaemon:${PORTSDIR}/deskutils/strigidaemon RUN_DEPENDS+= ${LOCALBASE}/bin/xmlindexer:${PORTSDIR}/deskutils/strigiutils .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |