From owner-svn-ports-all@FreeBSD.ORG Mon Dec 9 16:52:58 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6F592C67; Mon, 9 Dec 2013 16:52:58 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5B6D51ACF; Mon, 9 Dec 2013 16:52:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rB9Gqw99094063; Mon, 9 Dec 2013 16:52:58 GMT (envelope-from danilo@svn.freebsd.org) Received: (from danilo@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rB9GqwD2094062; Mon, 9 Dec 2013 16:52:58 GMT (envelope-from danilo@svn.freebsd.org) Message-Id: <201312091652.rB9GqwD2094062@svn.freebsd.org> From: Danilo Egea Gondolfo Date: Mon, 9 Dec 2013 16:52:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r336008 - head/misc/wmtunlo 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.17 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: Mon, 09 Dec 2013 16:52:58 -0000 Author: danilo Date: Mon Dec 9 16:52:57 2013 New Revision: 336008 URL: http://svnweb.freebsd.org/changeset/ports/336008 Log: - Add LICENSE - Add EXAMPLES option - Add stage support Modified: head/misc/wmtunlo/Makefile Modified: head/misc/wmtunlo/Makefile ============================================================================== --- head/misc/wmtunlo/Makefile Mon Dec 9 16:51:00 2013 (r336007) +++ head/misc/wmtunlo/Makefile Mon Dec 9 16:52:57 2013 (r336008) @@ -11,16 +11,17 @@ MASTER_SITES= http://www.gnu-darwin.org/ MAINTAINER= ports@FreeBSD.org COMMENT= Falling-down-a-tunnel dockapp +LICENSE= GPLv2 + USE_XORG= x11 xpm xextproto ALL_TARGET= wmtunlo -NO_STAGE= yes +OPTIONS_DEFINE= EXAMPLES + do-install: - @${INSTALL_PROGRAM} ${WRKSRC}/wmtunlo ${PREFIX}/bin -.ifndef NOPORTEXAMPLES - @${MKDIR} ${EXAMPLESDIR} - @${INSTALL_SCRIPT} ${WRKSRC}/examples/* \ - ${EXAMPLESDIR} -.endif + ${INSTALL_PROGRAM} ${WRKSRC}/wmtunlo ${STAGEDIR}${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_SCRIPT} ${WRKSRC}/examples/* \ + ${STAGEDIR}${EXAMPLESDIR} .include