From owner-svn-ports-head@freebsd.org Sun May 29 14:26:58 2016 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 45D43B51B75; Sun, 29 May 2016 14:26:58 +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 13F36115C; Sun, 29 May 2016 14:26:58 +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 u4TEQvnF083728; Sun, 29 May 2016 14:26:57 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4TEQvGc083727; Sun, 29 May 2016 14:26:57 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201605291426.u4TEQvGc083727@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 29 May 2016 14:26:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r416109 - head/editors/tpad 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.22 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: Sun, 29 May 2016 14:26:58 -0000 Author: amdmi3 Date: Sun May 29 14:26:57 2016 New Revision: 416109 URL: https://svnweb.freebsd.org/changeset/ports/416109 Log: - Add LICENSE - Add NO_ARCH - Depend on tk through USES - Switch to options helpers Modified: head/editors/tpad/Makefile Modified: head/editors/tpad/Makefile ============================================================================== --- head/editors/tpad/Makefile Sun May 29 14:26:28 2016 (r416108) +++ head/editors/tpad/Makefile Sun May 29 14:26:57 2016 (r416109) @@ -13,10 +13,12 @@ MASTER_SITES= SF/tclpad/tclpad/${PORTVER MAINTAINER= ports@FreeBSD.org COMMENT= Windows XP (TM) enhanced Notepad clone written in Tcl/Tk -RUN_DEPENDS= wish8.4:x11-toolkits/tk84 +LICENSE= GPLv2+ NO_BUILD= yes +NO_ARCH= yes +USES= tk:84,run PORTDOCS= ChangeLog bug.html conf.html embed.html index.html intro.html \ keys.html log.html mouse.html tidy.html tidy.png todo tpad.html PLIST_SUB= LIBDIR=lib/tpad${PORTVERSION} @@ -36,10 +38,12 @@ do-install: (cd ${STAGEDIR}${PREFIX}/bin && ${LN} -s tpad tview) ${INSTALL_MAN} ${WRKDIR}/man/man1/tpad.1 ${STAGEDIR}${MANPREFIX}/man/man1 (cd ${STAGEDIR}${MANPREFIX}/man/man1 && ${LN} -s tpad.1.gz tview.1.gz) + ${INSTALL_DATA} ${WRKDIR}/etc/tpad.conf \ + ${STAGEDIR}${PREFIX}/etc/tpad.conf.sample + +do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} (cd ${WRKDIR}/share/doc/tpad && ${INSTALL_DATA} ${PORTDOCS} \ ${STAGEDIR}${DOCSDIR}) - ${INSTALL_DATA} ${WRKDIR}/etc/tpad.conf \ - ${STAGEDIR}${PREFIX}/etc/tpad.conf.sample .include