From owner-svn-ports-all@freebsd.org Thu Sep 8 17:53:15 2016 Return-Path: Delivered-To: svn-ports-all@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 579C4BD1FB6; Thu, 8 Sep 2016 17:53:15 +0000 (UTC) (envelope-from amdmi3@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 0F76FB9; Thu, 8 Sep 2016 17:53:14 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u88HrEjb051854; Thu, 8 Sep 2016 17:53:14 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u88HrEKS051852; Thu, 8 Sep 2016 17:53:14 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609081753.u88HrEKS051852@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 8 Sep 2016 17:53:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421572 - head/irc/bip 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.23 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: Thu, 08 Sep 2016 17:53:15 -0000 Author: amdmi3 Date: Thu Sep 8 17:53:13 2016 New Revision: 421572 URL: https://svnweb.freebsd.org/changeset/ports/421572 Log: - Fix build WITHOUT=EXAMPLES - While here, fix LICENSE, add LICENSE_FILE, switch to USES=ssl, switch to options helpers, unsilence installation PR: 207283 Submitted by: samorders@gmail.com Approved by: maintainer timeout (swills, 6 months) Modified: head/irc/bip/Makefile head/irc/bip/pkg-plist Modified: head/irc/bip/Makefile ============================================================================== --- head/irc/bip/Makefile Thu Sep 8 17:49:12 2016 (r421571) +++ head/irc/bip/Makefile Thu Sep 8 17:53:13 2016 (r421572) @@ -9,17 +9,16 @@ MASTER_SITES= https://projects.duckcorp. MAINTAINER= swills@FreeBSD.org COMMENT= Simple IRC proxy with SSL support -LICENSE= GPLv2 +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/COPYING GNU_CONFIGURE= yes LDFLAGS+= -L${LOCALBASE}/lib CFLAGS+= -Wno-sign-compare -Wno-error -USES= cpe gmake +USES= cpe gmake ssl CPE_VENDOR= duckcorp INSTALL_TARGET= SUBDIR=src install-exec -USE_OPENSSL= yes - PATCH_STRIP= -p1 SUB_FILES= pkg-message @@ -28,25 +27,22 @@ EXAMPLEFILES= bip.conf bip.vim OPTIONS_DEFINE= DOCS EXAMPLES -.include - post-install: - @cd ${WRKSRC} && ${INSTALL} bip.1 ${STAGEDIR}${PREFIX}/man/man1 - @cd ${WRKSRC} && ${INSTALL} bipmkpw.1 ${STAGEDIR}${PREFIX}/man/man1 - @cd ${WRKSRC} && ${INSTALL} bip.conf.5 ${STAGEDIR}${PREFIX}/man/man5 + ${INSTALL_MAN} ${WRKSRC}/bip.1 ${STAGEDIR}${PREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/bipmkpw.1 ${STAGEDIR}${PREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/bip.conf.5 ${STAGEDIR}${PREFIX}/man/man5 -.if ${PORT_OPTIONS:MDOCS} +post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} .for docs in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/${docs} ${STAGEDIR}${DOCSDIR} .endfor -.endif -.if ${PORT_OPTIONS:MEXAMPLES} - @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + +post-install-EXAMPLES-on: + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} .for i in ${EXAMPLEFILES} ${INSTALL_DATA} ${WRKSRC}/samples/${i} ${STAGEDIR}${EXAMPLESDIR} .endfor -.endif .include Modified: head/irc/bip/pkg-plist ============================================================================== --- head/irc/bip/pkg-plist Thu Sep 8 17:49:12 2016 (r421571) +++ head/irc/bip/pkg-plist Thu Sep 8 17:53:13 2016 (r421572) @@ -3,5 +3,5 @@ bin/bipmkpw man/man1/bip.1.gz man/man1/bipmkpw.1.gz man/man5/bip.conf.5.gz -%%EXAMPLESDIR%%/bip.conf -%%EXAMPLESDIR%%/bip.vim +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bip.conf +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bip.vim