From owner-svn-ports-branches@FreeBSD.ORG Sun Aug 3 12:43:09 2014 Return-Path: Delivered-To: svn-ports-branches@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B624C37F for ; Sun, 3 Aug 2014 12:43:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8CD20290B for ; Sun, 3 Aug 2014 12:43:09 +0000 (UTC) Received: from pawel (uid 1252) (envelope-from pawel@FreeBSD.org) id 5a2a by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 03 Aug 2014 12:43:09 +0000 From: Pawel Pekala Date: Sun, 3 Aug 2014 12:43:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r363892 - branches/2014Q3/sysutils/usbhotkey X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53de2e5d.5a2a.5d568447@svn.freebsd.org> X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Aug 2014 12:43:09 -0000 Author: pawel Date: Sun Aug 3 12:43:09 2014 New Revision: 363892 URL: http://svnweb.freebsd.org/changeset/ports/363892 QAT: https://qat.redports.org/buildarchive/r363892/ Log: MFH: r363882 - Fix build with clang (needs to link with libX11) - Port is stage safe and uses GNU Configure Approved by: portmgr (antoine) Modified: branches/2014Q3/sysutils/usbhotkey/Makefile Directory Properties: branches/2014Q3/ (props changed) Modified: branches/2014Q3/sysutils/usbhotkey/Makefile ============================================================================== --- branches/2014Q3/sysutils/usbhotkey/Makefile Sun Aug 3 12:35:27 2014 (r363891) +++ branches/2014Q3/sysutils/usbhotkey/Makefile Sun Aug 3 12:43:09 2014 (r363892) @@ -16,12 +16,13 @@ LIB_DEPENDS= libhid.so:${PORTSDIR}/devel USES= gmake USE_RUBY= yes -HAS_CONFIGURE= yes +GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include \ -I${LOCALBASE}/include/ruby-${RUBY_VER} \ -I${LOCALBASE}/include/ruby-${RUBY_VER}/${RUBY_ARCH} LDFLAGS+= -L${LOCALBASE}/lib +LIBS+= -lX11 OPTIONS_DEFINE= GUI OPTIONS_DEFAULT= GUI @@ -30,5 +31,4 @@ GUI_DESC= Enable GUI bits (via Imlib) GUI_LIB_DEPENDS= libImlib.so:${PORTSDIR}/graphics/imlib GUI_CONFIGURE_OFF= --without-Imlib -NO_STAGE= yes .include