From owner-svn-ports-head@freebsd.org Mon Feb 22 14:56:08 2021 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id A9208541705; Mon, 22 Feb 2021 14:56:08 +0000 (UTC) (envelope-from ak@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DklcS4Pmwz3lB7; Mon, 22 Feb 2021 14:56:08 +0000 (UTC) (envelope-from ak@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 7B9D2277DE; Mon, 22 Feb 2021 14:56:08 +0000 (UTC) (envelope-from ak@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 11MEu82s002907; Mon, 22 Feb 2021 14:56:08 GMT (envelope-from ak@FreeBSD.org) Received: (from ak@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 11MEu7U4002905; Mon, 22 Feb 2021 14:56:07 GMT (envelope-from ak@FreeBSD.org) Message-Id: <202102221456.11MEu7U4002905@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ak set sender to ak@FreeBSD.org using -f From: Alex Kozlov Date: Mon, 22 Feb 2021 14:56:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r566301 - in head/graphics/xmountains: . files X-SVN-Group: ports-head X-SVN-Commit-Author: ak X-SVN-Commit-Paths: in head/graphics/xmountains: . files X-SVN-Commit-Revision: 566301 X-SVN-Commit-Repository: ports 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.34 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, 22 Feb 2021 14:56:08 -0000 Author: ak Date: Mon Feb 22 14:56:07 2021 New Revision: 566301 URL: https://svnweb.freebsd.org/changeset/ports/566301 Log: - Update to 2.10 - Switch MASTER_SITES to https:// - Update WWW Deleted: head/graphics/xmountains/files/ Modified: head/graphics/xmountains/Makefile head/graphics/xmountains/distinfo head/graphics/xmountains/pkg-descr Modified: head/graphics/xmountains/Makefile ============================================================================== --- head/graphics/xmountains/Makefile Mon Feb 22 14:52:22 2021 (r566300) +++ head/graphics/xmountains/Makefile Mon Feb 22 14:56:07 2021 (r566301) @@ -2,16 +2,16 @@ # $FreeBSD$ PORTNAME= xmountains -PORTVERSION= 2.9 +PORTVERSION= 2.10 CATEGORIES= graphics x11 -MASTER_SITES= ftp://ftp.mirrorservice.org/sites/archive.raspbian.org/raspbian/pool/main/x/xmountains/ \ - ftp://ftp.unicamp.br/pub/debian/pool/main/x/xmountains/ +MASTER_SITES= https://ftp.mirrorservice.org/sites/archive.raspbian.org/raspbian/pool/main/x/xmountains/ \ + https://ftp.unicamp.br/pub/debian/pool/main/x/xmountains/ DISTNAME= ${PORTNAME}_${PORTVERSION}.orig MAINTAINER= ak@FreeBSD.org COMMENT= X11 based fractal landscape generator -NO_WRKSUBDIR= yes +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} USES= xorg USE_XORG= xbitmaps x11 @@ -25,7 +25,9 @@ post-extract: @${LN} -sf ${PORTNAME}.man ${WRKSRC}/${PORTNAME}.6 do-build: - (cd ${BUILD_WRKSRC} && ${CC} ${CFLAGS} *.c -lX11 -lm -o ${PORTNAME}) + (cd ${BUILD_WRKSRC} && ${CC} ${CFLAGS} \ + calcalt.c random.c artist.c global.c xmountains.c X_graphics.c print_alg.c \ + -lX11 -lm -o ${PORTNAME}) do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin Modified: head/graphics/xmountains/distinfo ============================================================================== --- head/graphics/xmountains/distinfo Mon Feb 22 14:52:22 2021 (r566300) +++ head/graphics/xmountains/distinfo Mon Feb 22 14:56:07 2021 (r566301) @@ -1,2 +1,3 @@ -SHA256 (xmountains_2.9.orig.tar.gz) = 3830f48ab46d770f0ce1c5e8fd1861e28fa1b8373aa82fac66a563f017aaee89 -SIZE (xmountains_2.9.orig.tar.gz) = 27951 +TIMESTAMP = 1613932039 +SHA256 (xmountains_2.10.orig.tar.gz) = 5a6d4f18b5cb1e0d8482faf5b5b95657edb61f98f3bef2042714d9e0fe487f14 +SIZE (xmountains_2.10.orig.tar.gz) = 1192498 Modified: head/graphics/xmountains/pkg-descr ============================================================================== --- head/graphics/xmountains/pkg-descr Mon Feb 22 14:52:22 2021 (r566300) +++ head/graphics/xmountains/pkg-descr Mon Feb 22 14:56:07 2021 (r566301) @@ -3,3 +3,5 @@ random fractal surfaces and displays them in a window. program is running the fractal is continuously extended on the right and the image is scrolled from right to left to expose the newly generated area. + +WWW: https://spbooth.github.io/xmountains/