Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 6 Oct 2013 14:48:21 +0000 (UTC)
From:      Grzegorz Blach <gblach@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r329577 - head/graphics/evas-core
Message-ID:  <201310061448.r96EmLHe001540@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gblach
Date: Sun Oct  6 14:48:21 2013
New Revision: 329577
URL: http://svnweb.freebsd.org/changeset/ports/329577

Log:
  - Convert to new LIB_DEPENDS syntax
  - Support staging
  
  Approved by:	crees, tabthorpe (mentors, implicit)

Modified:
  head/graphics/evas-core/Makefile

Modified: head/graphics/evas-core/Makefile
==============================================================================
--- head/graphics/evas-core/Makefile	Sun Oct  6 14:44:01 2013	(r329576)
+++ head/graphics/evas-core/Makefile	Sun Oct  6 14:48:21 2013	(r329577)
@@ -14,7 +14,7 @@ COMMENT=	A hardware accelerated canvas A
 
 LICENSE=	BSD
 
-LIB_DEPENDS=	freetype:${PORTSDIR}/print/freetype2
+LIB_DEPENDS=	libfreetype.so:${PORTSDIR}/print/freetype2
 
 DIST_SUBDIR=	e17
 USE_BZIP2=	yes
@@ -26,7 +26,6 @@ USE_LDCONFIG=	yes
 DATADIR=	${PREFIX}/share/evas
 EXAMPLESDIR=	${PREFIX}/share/examples/evas
 
-NO_STAGE=	yes
 .include "Makefile.inc"
 
 OPTIONS_DEFINE=	EET FONTCONFIG FRIBIDI
@@ -36,14 +35,14 @@ EET_DESC=	EET font loader
 .include <bsd.port.options.mk>
 
 .if ${PORT_OPTIONS:MFONTCONFIG}
-LIB_DEPENDS+=	fontconfig:${PORTSDIR}/x11-fonts/fontconfig
+LIB_DEPENDS+=	libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig
 CONFIGURE_ARGS+=--enable-fontconfig
 .else
 CONFIGURE_ARGS+=--disable-fontconfig
 .endif
 
 .if ${PORT_OPTIONS:MFRIBIDI}
-LIB_DEPENDS+=	fribidi:${PORTSDIR}/converters/fribidi
+LIB_DEPENDS+=	libfribidi.so:${PORTSDIR}/converters/fribidi
 CONFIGURE_ARGS+=--enable-fribidi
 .else
 CONFIGURE_ARGS+=--disable-fribidi
@@ -66,9 +65,4 @@ post-patch:
 	@${REINPLACE_CMD} -e 's|= \$$(datadir)/\$$(PACKAGE)/examples|= $$(datadir)/examples/$$(PACKAGE)|' \
 		${WRKSRC}/src/examples/Makefile.in
 
-post-install:
-.if empty(PORT_OPTIONS:MEXAMPLES)
-	@${RMDIR} ${EXAMPLESDIR}
-.endif
-
 .include <bsd.port.mk>



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