From owner-svn-ports-head@freebsd.org Wed Oct 21 21:20:13 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 61D9AA1B2A1; Wed, 21 Oct 2015 21:20:13 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 303CA1D9D; Wed, 21 Oct 2015 21:20:13 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9LLKCP6011051; Wed, 21 Oct 2015 21:20:12 GMT (envelope-from thierry@FreeBSD.org) Received: (from thierry@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9LLKCYH011050; Wed, 21 Oct 2015 21:20:12 GMT (envelope-from thierry@FreeBSD.org) Message-Id: <201510212120.t9LLKCYH011050@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: thierry set sender to thierry@FreeBSD.org using -f From: Thierry Thomas Date: Wed, 21 Oct 2015 21:20:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399933 - head/cad/kicad X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Oct 2015 21:20:13 -0000 Author: thierry Date: Wed Oct 21 21:20:12 2015 New Revision: 399933 URL: https://svnweb.freebsd.org/changeset/ports/399933 Log: Don't depend on doxygen if DOCS are not enabled. Since I'm there, pet portlint. Submitted by: phk Modified: head/cad/kicad/Makefile Modified: head/cad/kicad/Makefile ============================================================================== --- head/cad/kicad/Makefile Wed Oct 21 21:14:39 2015 (r399932) +++ head/cad/kicad/Makefile Wed Oct 21 21:20:12 2015 (r399933) @@ -15,12 +15,11 @@ COMMENT= Schematic and PCB editing softw LICENSE= GPLv2 LIB_DEPENDS= libboost_thread.so:${PORTSDIR}/devel/boost-libs -BUILD_DEPENDS= doxygen:${PORTSDIR}/devel/doxygen RUN_DEPENDS= xpdf:${PORTSDIR}/graphics/xpdf CONFLICTS= kicad-devel* -USES= cmake dos2unix desktop-file-utils shared-mime-info tar:xz +USES= cmake desktop-file-utils dos2unix shared-mime-info tar:xz # Does not compile with Gcc48 USE_GCC= 4.7 @@ -28,12 +27,12 @@ USE_GCC= 4.7 LDFLAGS+= -L${LOCALBASE}/lib/c++ CXXFLAGS+= -nostdinc++ -isystem ${LOCALBASE}/include/c++/v1 BUILD_DEPENDS+= ${LOCALBASE}/lib/c++/libstdc++.so:${PORTSDIR}/devel/libc++ +DOCS_BUILD_DEPENDS= doxygen:${PORTSDIR}/devel/doxygen DOS2UNIX_GLOB= *.cmake sch_bus_entry.h sch_line.h sch_no_connect.h -USE_XORG= x11 ice xext +USE_XORG= ice x11 xext USE_GL= yes USE_WX= 3.0 -WX_UNICODE= yes USE_GNOME= atk # Required by libwx_gtk2_aui-2.8.so CXXFLAGS+= -I${WRKSRC}/include -I${LOCALBASE}/include -DBOOST_HASH_NO_EXTENSIONS CMAKE_ARGS= -DwxWidgets_CONFIG_EXECUTABLE=${WX_CONFIG} \