Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 14 Oct 2013 20:13:57 +0000 (UTC)
From:      Olivier Duchateau <olivierd@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r330353 - head/www/midori
Message-ID:  <201310142013.r9EKDvID030804@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: olivierd
Date: Mon Oct 14 20:13:57 2013
New Revision: 330353
URL: http://svnweb.freebsd.org/changeset/ports/330353

Log:
  - Support STAGEDIR
  - Convert to new LIB_DEPENDS format

Modified:
  head/www/midori/Makefile

Modified: head/www/midori/Makefile
==============================================================================
--- head/www/midori/Makefile	Mon Oct 14 20:13:17 2013	(r330352)
+++ head/www/midori/Makefile	Mon Oct 14 20:13:57 2013	(r330353)
@@ -48,7 +48,6 @@ OPTIONS_DEFAULT=	NLS UNIQUE
 UNIQUE_DESC=	Single instance support
 ZEITGEIST_DESC=	User logs activities
 
-NO_STAGE=	yes
 .include <bsd.port.options.mk>
 
 # WAF needs that
@@ -72,14 +71,14 @@ PLIST_SUB+=	APIDOCS="@comment "
 .endif
 
 .if ${PORT_OPTIONS:MUNIQUE}
-LIB_DEPENDS+=	unique-1:${PORTSDIR}/x11-toolkits/unique
+LIB_DEPENDS+=	libunique-1.0.so:${PORTSDIR}/x11-toolkits/unique
 CONFIGURE_ARGS+=--enable-unique
 .else
 CONFIGURE_ARGS+=--disable-unique
 .endif
 
 .if ${PORT_OPTIONS:MZEITGEIST}
-LIB_DEPENDS+=	zeitgeist-1:${PORTSDIR}/sysutils/libzeitgeist
+LIB_DEPENDS+=	libzeitgeist-1.0.so:${PORTSDIR}/sysutils/libzeitgeist
 CONFIGURE_ARGS+=--enable-zeitgeist
 .else
 CONFIGURE_ARGS+=--disable-zeitgeist
@@ -88,9 +87,9 @@ CONFIGURE_ARGS+=--disable-zeitgeist
 post-install:
 .if ${PORT_OPTIONS:MDOCS}
 .for dir in katze midori
-	@${MKDIR} ${DOCSDIR}/api/${dir}/html
+	@${MKDIR} ${STAGEDIR}${DOCSDIR}/api/${dir}/html
 	@cd ${WRKSRC}/_build/docs/api/${dir}/html && \
-		${COPYTREE_SHARE} . ${DOCSDIR}/api/${dir}/html
+		${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}/api/${dir}/html
 .endfor
 .endif
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201310142013.r9EKDvID030804>