From owner-svn-ports-head@freebsd.org Mon Jan 28 09:33:14 2019 Return-Path: Delivered-To: svn-ports-head@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 04A9714AD765; Mon, 28 Jan 2019 09:33:14 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9EF4982D14; Mon, 28 Jan 2019 09:33:13 +0000 (UTC) (envelope-from yuri@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 911211DB6C; Mon, 28 Jan 2019 09:33:13 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x0S9XDYC048382; Mon, 28 Jan 2019 09:33:13 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x0S9XChA048374; Mon, 28 Jan 2019 09:33:12 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201901280933.x0S9XChA048374@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 28 Jan 2019 09:33:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r491468 - in head/science: . healpix X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/science: . healpix X-SVN-Commit-Revision: 491468 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 9EF4982D14 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.975,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 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: Mon, 28 Jan 2019 09:33:14 -0000 Author: yuri Date: Mon Jan 28 09:33:12 2019 New Revision: 491468 URL: https://svnweb.freebsd.org/changeset/ports/491468 Log: New port: science/healpix: Software for pixelization, visualization, etc of data on the sphere Approved by: portmgr Differential Revision: D18548 Added: head/science/healpix/ head/science/healpix/Makefile (contents, props changed) head/science/healpix/distinfo (contents, props changed) head/science/healpix/pkg-descr (contents, props changed) head/science/healpix/pkg-plist-c (contents, props changed) head/science/healpix/pkg-plist-cxx (contents, props changed) Modified: head/science/Makefile Modified: head/science/Makefile ============================================================================== --- head/science/Makefile Mon Jan 28 09:30:37 2019 (r491467) +++ head/science/Makefile Mon Jan 28 09:33:12 2019 (r491468) @@ -102,6 +102,7 @@ SUBDIR += hdf SUBDIR += hdf5 SUBDIR += hdf5-18 + SUBDIR += healpix SUBDIR += hypre SUBDIR += iboview SUBDIR += isaac-cfd Added: head/science/healpix/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/healpix/Makefile Mon Jan 28 09:33:12 2019 (r491468) @@ -0,0 +1,36 @@ +# $FreeBSD$ + +PORTNAME= healpix +DISTVERSION= 3.50 +DISTVERSIONSUFFIX= _2018Dec10 +CATEGORIES= science +MASTER_SITES= SF/${PORTNAME}/Healpix_${DISTVERSION}/ +DISTNAME= Healpix_${DISTVERSIONFULL} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Software for pixelization, visualization, etc of data on the sphere + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + +LIB_DEPENDS= libcfitsio.so:astro/cfitsio \ + libcurl.so:ftp/curl + +FLAVORS= cxx c +FLAVOR?= ${FLAVORS:[1]} +c_PKGNAMESUFFIX= -c +cxx_PLIST= ${.CURDIR}/pkg-plist-cxx +c_PLIST= ${.CURDIR}/pkg-plist-c + +USES= autoreconf gmake libtool pkgconfig +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --disable-static +USE_LDCONFIG= yes + +WRKSRC= ${WRKDIR}/Healpix_${DISTVERSION} +AUTORECONF_WRKSRC= ${WRKSRC}/src/${FLAVOR:S/^c$/C/}/autotools +CONFIGURE_WRKSRC= ${AUTORECONF_WRKSRC} +BUILD_WRKSRC= ${AUTORECONF_WRKSRC} +INSTALL_WRKSRC= ${AUTORECONF_WRKSRC} + +.include Added: head/science/healpix/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/healpix/distinfo Mon Jan 28 09:33:12 2019 (r491468) @@ -0,0 +1,3 @@ +TIMESTAMP = 1544761061 +SHA256 (Healpix_3.50_2018Dec10.tar.gz) = ec9378888ef8365f9a83fa82e3ef3b4e411ed6a63aca33b74a6917c05334bf4f +SIZE (Healpix_3.50_2018Dec10.tar.gz) = 59960485 Added: head/science/healpix/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/healpix/pkg-descr Mon Jan 28 09:33:12 2019 (r491468) @@ -0,0 +1,6 @@ +HEALPix is an acronym for Hierarchical Equal Area isoLatitude Pixelization of a +sphere. As suggested in the name, this pixelization produces a subdivision of a +spherical surface in which each pixel covers the same surface area as every +other pixel. + +WWW: https://healpix.jpl.nasa.gov/ Added: head/science/healpix/pkg-plist-c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/healpix/pkg-plist-c Mon Jan 28 09:33:12 2019 (r491468) @@ -0,0 +1,5 @@ +include/chealpix.h +lib/libchealpix.so +lib/libchealpix.so.0 +lib/libchealpix.so.0.0.0 +libdata/pkgconfig/chealpix.pc Added: head/science/healpix/pkg-plist-cxx ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/healpix/pkg-plist-cxx Mon Jan 28 09:33:12 2019 (r491468) @@ -0,0 +1,54 @@ +bin/alm2map_cxx +bin/anafast_cxx +bin/calc_powspec +bin/compute_weights +bin/hotspots_cxx +bin/map2tga +bin/median_filter_cxx +bin/mult_alm +bin/needlet_tool +bin/rotalm_cxx +bin/smoothing_cxx +bin/syn_alm_cxx +bin/udgrade_cxx +bin/udgrade_harmonic_cxx +include/healpix_cxx/alloc_utils.h +include/healpix_cxx/alm.h +include/healpix_cxx/alm_fitsio.h +include/healpix_cxx/alm_healpix_tools.h +include/healpix_cxx/alm_powspec_tools.h +include/healpix_cxx/arr.h +include/healpix_cxx/datatypes.h +include/healpix_cxx/error_handling.h +include/healpix_cxx/fitshandle.h +include/healpix_cxx/geom_utils.h +include/healpix_cxx/healpix_base.h +include/healpix_cxx/healpix_data_io.h +include/healpix_cxx/healpix_map.h +include/healpix_cxx/healpix_map_fitsio.h +include/healpix_cxx/healpix_tables.h +include/healpix_cxx/lsconstants.h +include/healpix_cxx/math_utils.h +include/healpix_cxx/moc.h +include/healpix_cxx/moc_fitsio.h +include/healpix_cxx/moc_query.h +include/healpix_cxx/pointing.h +include/healpix_cxx/powspec.h +include/healpix_cxx/powspec_fitsio.h +include/healpix_cxx/rangeset.h +include/healpix_cxx/rotmatrix.h +include/healpix_cxx/safe_cast.h +include/healpix_cxx/sharp.h +include/healpix_cxx/sharp_geomhelpers.c +include/healpix_cxx/sharp_geomhelpers.h +include/healpix_cxx/sharp_lowlevel.h +include/healpix_cxx/sse_utils_cxx.h +include/healpix_cxx/string_utils.h +include/healpix_cxx/vec3.h +include/healpix_cxx/weight_utils.h +include/healpix_cxx/wigner.h +include/healpix_cxx/xcomplex.h +lib/libhealpix_cxx.so +lib/libhealpix_cxx.so.2 +lib/libhealpix_cxx.so.2.0.1 +libdata/pkgconfig/healpix_cxx.pc