From owner-svn-ports-head@freebsd.org Tue Feb 28 08:44:50 2017 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 2DB8BCF0F1B; Tue, 28 Feb 2017 08:44:50 +0000 (UTC) (envelope-from danfe@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 E29A0A7B; Tue, 28 Feb 2017 08:44:49 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v1S8inXQ043018; Tue, 28 Feb 2017 08:44:49 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v1S8im9S043013; Tue, 28 Feb 2017 08:44:48 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201702280844.v1S8im9S043013@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Tue, 28 Feb 2017 08:44:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r435007 - in head/math: . acalc 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.23 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: Tue, 28 Feb 2017 08:44:50 -0000 Author: danfe Date: Tue Feb 28 08:44:48 2017 New Revision: 435007 URL: https://svnweb.freebsd.org/changeset/ports/435007 Log: `math/acalc' is a simple and pretty Qt4-based expression calculator. Because GitHub releases (tarballs) are not fetched with correct modification time, set TIMESTAMP to 1481206796 which corresponds to commit 6c032ba tagged as this release. PR: 215158 Submitted by: Andrey Ponomarenko Added: head/math/acalc/ head/math/acalc/Makefile (contents, props changed) head/math/acalc/distinfo (contents, props changed) head/math/acalc/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Tue Feb 28 08:33:44 2017 (r435006) +++ head/math/Makefile Tue Feb 28 08:44:48 2017 (r435007) @@ -75,6 +75,7 @@ SUBDIR += abacus SUBDIR += abakus SUBDIR += abs + SUBDIR += acalc SUBDIR += add SUBDIR += algae SUBDIR += algotutor Added: head/math/acalc/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/acalc/Makefile Tue Feb 28 08:44:48 2017 (r435007) @@ -0,0 +1,30 @@ +# $FreeBSD$ + +PORTNAME= acalc +PORTVERSION= 0.21 +DISTVERSIONPREFIX= ${PORTNAME}- +CATEGORIES= math + +MAINTAINER= andrey.nik.ponomarenko@gmail.com +COMMENT= Simple and pretty Qt4-based expression calculator + +LICENSE= BSD4CLAUSE + +USE_GITHUB= yes +GH_ACCOUNT= anpp + +USES= qmake +USE_QT4= corelib gui moc_build rcc_build uic_build +WRKSRC_SUBDIR= aCalc/aCalc + +PLIST_FILES= bin/acalc share/pixmaps/Calculator-50.png + +DESKTOP_ENTRIES="acalc" "" "${PREFIX}/share/pixmaps/Calculator-50.png" \ + "${PORTNAME}" "" "" + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/acalc ${STAGEDIR}${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/Icons/Calculator-50.png \ + ${STAGEDIR}${PREFIX}/share/pixmaps + +.include Added: head/math/acalc/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/acalc/distinfo Tue Feb 28 08:44:48 2017 (r435007) @@ -0,0 +1,3 @@ +TIMESTAMP = 1481206796 +SHA256 (anpp-acalc-acalc-0.21_GH0.tar.gz) = 0c4f0680a2e87ff7e7814c867c5ca8e3b31edfd36ce996912628bae913c6530c +SIZE (anpp-acalc-acalc-0.21_GH0.tar.gz) = 52961 Added: head/math/acalc/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/acalc/pkg-descr Tue Feb 28 08:44:48 2017 (r435007) @@ -0,0 +1,5 @@ +Acalc is simple and pretty expression calculator, based on Qt 4 toolkit. +It offers standard functions (sin, asinh, etc.), pre-defined constants, +variables, hex/octal/binary I/O, original and user-friendly interface. + +WWW: https://github.com/anpp/acalc