From owner-svn-ports-all@FreeBSD.ORG Sat Apr 18 10:53:32 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C3641D7D; Sat, 18 Apr 2015 10:53:32 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 97C5BDA3; Sat, 18 Apr 2015 10:53:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3IArWYS030076; Sat, 18 Apr 2015 10:53:32 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3IArWqp030075; Sat, 18 Apr 2015 10:53:32 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201504181053.t3IArWqp030075@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sat, 18 Apr 2015 10:53:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r384221 - head/news/husky-htick X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Apr 2015 10:53:32 -0000 Author: marino Date: Sat Apr 18 10:53:31 2015 New Revision: 384221 URL: https://svnweb.freebsd.org/changeset/ports/384221 Log: news/husky-(hpt|htick): Restore build on FreeBSD 11 and DF The husky-htp texi file can still be processed by the latest texinfo programs, so all it needed was USES+= makeinfo to fix FreeBSD 11. However, the husky-htick texi file is too old, so the makefile was adjusted to not install info if the base texinfo isn't available. While here, use PORTDOCS and remove very short pkg-plist file. The maintainer will be notified so he can restore the info page on all platforms. Approved by: blanket (restores build on FreeBSD 11) Deleted: head/news/husky-htick/pkg-plist Modified: head/news/husky-htick/Makefile Modified: head/news/husky-htick/Makefile ============================================================================== --- head/news/husky-htick/Makefile Sat Apr 18 10:48:59 2015 (r384220) +++ head/news/husky-htick/Makefile Sat Apr 18 10:53:31 2015 (r384221) @@ -9,14 +9,28 @@ COMMENT= Husky FTN file ticker LIB_DEPENDS= libfidoconfig.so:${PORTSDIR}/news/husky-fidoconf \ libareafix.so:${PORTSDIR}/news/husky-areafix -ALL_TARGET= all doc -INSTALL_TARGET= install install-doc -INFO= htick +ALL_TARGET= all +INSTALL_TARGET= install USE_LDCONFIG= yes +PLIST_FILES= bin/htick man/man1/htick.1.gz MASTERDIR= ${.CURDIR}/../husky COMPONENT_SUBDIR= htick +# The texi files are too old for the ports texinfo +# The correct fix is to update the texi file so modern texinfo can use it +# Until then, disable installation of info page on FreeBSD 11 and DragonFly +# to unbreak the build on those platforms. +.if !exists(/usr/bin/makeinfo) +.else +USES+= makeinfo +ALL_TARGET+= doc +INSTALL_TARGET+= install-doc +PORTDOCS= htick.html +DOCSDIR= ${PREFIX}/share/doc/husky +INFO= htick +.endif + post-patch: ${REINPLACE_CMD} -e 's^/fido/etc/config^${PREFIX}/etc/fido/config^' \ ${WRKSRC}/man/htick.1