Date: Tue, 28 Feb 2017 08:44:48 +0000 (UTC) From: Alexey Dokuchaev <danfe@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r435007 - in head/math: . acalc Message-ID: <201702280844.v1S8im9S043013@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201702280844.v1S8im9S043013>