Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 21 Dec 2013 04:39:52 +0000 (UTC)
From:      Eitan Adler <eadler@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r337117 - head/misc/hotkeys
Message-ID:  <201312210439.rBL4dq1A032304@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: eadler
Date: Sat Dec 21 04:39:52 2013
New Revision: 337117
URL: http://svnweb.freebsd.org/changeset/ports/337117

Log:
  misc/hotkeys: Fix build
  
  The build requires two additional libraries: Xft and pangoxft

Modified:
  head/misc/hotkeys/Makefile

Modified: head/misc/hotkeys/Makefile
==============================================================================
--- head/misc/hotkeys/Makefile	Sat Dec 21 01:14:09 2013	(r337116)
+++ head/misc/hotkeys/Makefile	Sat Dec 21 04:39:52 2013	(r337117)
@@ -20,7 +20,7 @@ CONFIGURE_ARGS=	--with-db3-inc=${BDB_INC
 		--with-db3-lib=${BDB_LIB_DIR} \
 		--with-db-name=${BDB_LIB_NAME}
 
-USE_XORG=	x11 xkbfile xmu
+USE_XORG=	x11 xkbfile xmu xft
 GNU_CONFIGURE=	yes
 USE_BDB=	yes
 USES=		gmake
@@ -39,6 +39,8 @@ post-extract:
 post-patch:
 	@${REINPLACE_CMD} -e '/^install-exec-am/s/install-sysconfDATA//' \
 		${WRKSRC}/src/Makefile.in
+post-configure:
+	${REINPLACE_CMD} -e 's,-lXinerama,-lXinerama `pkgconf --libs pangoxft`,g' ${WRKSRC}/src/Makefile
 
 post-install:
 	@${INSTALL_DATA} ${WRKSRC}/src/hotkeys.conf ${STAGEDIR}${PREFIX}/etc/hotkeys.conf.sample



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