From owner-svn-ports-all@freebsd.org Fri Jun 1 23:03:21 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3352DFDFC3E; Fri, 1 Jun 2018 23:03:21 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F396C7AE37; Fri, 1 Jun 2018 23:03:18 +0000 (UTC) (envelope-from sunpoet@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 788D42F39B; Fri, 1 Jun 2018 23:03:18 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w51N3Int015242; Fri, 1 Jun 2018 23:03:18 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w51N3IYf015241; Fri, 1 Jun 2018 23:03:18 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806012303.w51N3IYf015241@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 1 Jun 2018 23:03:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r471326 - in head/textproc/kibana46: . files X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/textproc/kibana46: . files X-SVN-Commit-Revision: 471326 X-SVN-Commit-Repository: ports 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.26 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: Fri, 01 Jun 2018 23:03:21 -0000 Author: sunpoet Date: Fri Jun 1 23:03:18 2018 New Revision: 471326 URL: https://svnweb.freebsd.org/changeset/ports/471326 Log: Update Makefile (copied from kibana45) - While I'm here, fix RUN_DEPENDS Added: head/textproc/kibana46/files/ - copied from r471285, head/textproc/kibana45/files/ Modified: head/textproc/kibana46/Makefile Modified: head/textproc/kibana46/Makefile ============================================================================== --- head/textproc/kibana46/Makefile Fri Jun 1 23:03:11 2018 (r471325) +++ head/textproc/kibana46/Makefile Fri Jun 1 23:03:18 2018 (r471326) @@ -1,15 +1,35 @@ # Created by: Sergey Kozlov # $FreeBSD$ +PORTNAME= kibana PORTVERSION= 4.6.4 +DISTVERSIONSUFFIX= -linux-x86 +CATEGORIES= textproc www +MASTER_SITES= https://download.elastic.co/kibana/kibana/ \ + http://download.elastic.co/kibana/kibana/ PKGNAMESUFFIX= 46 -MASTERDIR= ${.CURDIR}/../kibana45 -PKGDIR= ${.CURDIR} -DISTINFO_FILE= ${.CURDIR}/distinfo -RUN_DEPENDS= node6>=v6.9.0:www/node6 - DEPRECATED= End of Life was 2018-02-28 EXPIRATION_DATE= 2018-07-09 -.include "${MASTERDIR}/Makefile" +MAINTAINER= kozlov.sergey.404@gmail.com +COMMENT= Browser based analytics and search interface to ElasticSearch + +LICENSE= APACHE20 + +RUN_DEPENDS= node6>=6.9.0:www/node6 + +NO_BUILD= yes +NO_ARCH= yes +WWWDIR= ${PREFIX}/www/${PORTNAME}${PKGNAMESUFFIX} +USE_RC_SUBR= ${PORTNAME} + +do-install: + ${CP} ${WRKSRC}/config/kibana.yml ${STAGEDIR}${PREFIX}/etc/kibana.yml.sample + ${MKDIR} ${STAGEDIR}${WWWDIR} + cd ${WRKSRC} && \ + ${RM} -r bin config node && \ + ${RM} -r optimize/* && \ + ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR} + +.include