From owner-svn-ports-head@freebsd.org Tue Dec 15 19:58:18 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 5C726A483F0; Tue, 15 Dec 2015 19:58:18 +0000 (UTC) (envelope-from pawel@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 11FE81453; Tue, 15 Dec 2015 19:58:17 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tBFJwHJd066652; Tue, 15 Dec 2015 19:58:17 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tBFJwHe6066651; Tue, 15 Dec 2015 19:58:17 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201512151958.tBFJwHe6066651@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Tue, 15 Dec 2015 19:58:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r403801 - head/comms/fldigi 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: Tue, 15 Dec 2015 19:58:18 -0000 Author: pawel Date: Tue Dec 15 19:58:16 2015 New Revision: 403801 URL: https://svnweb.freebsd.org/changeset/ports/403801 Log: - Remove pkg-config dependency from BUILD_DEPENDS, it's implied by USES=pkgconfig - Switch to USES=execinfo, this will use external libexecinfo from ports only when needed - Use options helpers - Remove usage of deprecated MAN1 variable, pkg-plist is handling this anyway PR: 205271 Submitted by: me Approved by: shurd Modified: head/comms/fldigi/Makefile Modified: head/comms/fldigi/Makefile ============================================================================== --- head/comms/fldigi/Makefile Tue Dec 15 19:40:21 2015 (r403800) +++ head/comms/fldigi/Makefile Tue Dec 15 19:58:16 2015 (r403801) @@ -11,18 +11,16 @@ COMMENT= Digital decoder for psk, cw, ps LICENSE= GPLv3 -BUILD_DEPENDS= pkg-config:${PORTSDIR}/devel/pkgconf \ - asciidoc:${PORTSDIR}/textproc/asciidoc\ +BUILD_DEPENDS= asciidoc:${PORTSDIR}/textproc/asciidoc\ docbook-xsl>=1.0:${PORTSDIR}/textproc/docbook-xsl\ xsltproc:${PORTSDIR}/textproc/libxslt -LIB_DEPENDS= libexecinfo.so:${PORTSDIR}/devel/libexecinfo \ - libsamplerate.so:${PORTSDIR}/audio/libsamplerate\ +LIB_DEPENDS= libsamplerate.so:${PORTSDIR}/audio/libsamplerate\ libboost_system.so:${PORTSDIR}/devel/boost-libs\ libfltk.so:${PORTSDIR}/x11-toolkits/fltk USE_CXXSTD= gnu++0x GNU_CONFIGURE= yes -USES= compiler:c++11-lib gmake perl5 pkgconfig shebangfix +USES= compiler:c++11-lib execinfo gmake perl5 pkgconfig shebangfix CONFIGURE_ENV= FLTK_CONFIG="${LOCALBASE}/bin/fltk-config" \ EXTRA_LIBS="-lexecinfo" @@ -54,15 +52,7 @@ HAMLIB_LIB_DEPENDS= libhamlib.so:${PORT NLS_CONFIGURE_ENABLE= nls NLS_USES= gettext -.include - -.if ${ARCH} == "sparc64" -BROKEN= Fails to install -.endif -.if ${PORT_OPTIONS:MFLARQ} -MAN1+= flarq.1 -.endif -PLIST_SUB+= XMLRPC="" +BROKEN_sparc64= Fails to install # Always need asciidoc for man pages CONFIGURE_ARGS+=--with-asciidoc @@ -76,11 +66,9 @@ post-configure: # force rebuild of man pages ${RM} ${WRKSRC}/doc/*.1 -post-install: -.if ${PORT_OPTIONS:MDOCS} +post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/doc/guide.html ${STAGEDIR}${DOCSDIR} -.endif -.include +.include