From owner-svn-ports-all@freebsd.org Mon Nov 16 18:43:44 2020 Return-Path: Delivered-To: svn-ports-all@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 DE0F246E2BF; Mon, 16 Nov 2020 18:43:44 +0000 (UTC) (envelope-from lbartoletti@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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CZdJJ5yVkz4SsZ; Mon, 16 Nov 2020 18:43:44 +0000 (UTC) (envelope-from lbartoletti@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 BF56512942; Mon, 16 Nov 2020 18:43:44 +0000 (UTC) (envelope-from lbartoletti@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0AGIhigt074630; Mon, 16 Nov 2020 18:43:44 GMT (envelope-from lbartoletti@FreeBSD.org) Received: (from lbartoletti@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AGIhheX074625; Mon, 16 Nov 2020 18:43:43 GMT (envelope-from lbartoletti@FreeBSD.org) Message-Id: <202011161843.0AGIhheX074625@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lbartoletti set sender to lbartoletti@FreeBSD.org using -f From: =?UTF-8?Q?Lo=c3=afc_Bartoletti?= Date: Mon, 16 Nov 2020 18:43:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r555507 - in head/graphics: hugin librasterlite librasterlite2 libreatlas mapcache proj X-SVN-Group: ports-head X-SVN-Commit-Author: lbartoletti X-SVN-Commit-Paths: in head/graphics: hugin librasterlite librasterlite2 libreatlas mapcache proj X-SVN-Commit-Revision: 555507 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.34 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: Mon, 16 Nov 2020 18:43:44 -0000 Author: lbartoletti Date: Mon Nov 16 18:43:43 2020 New Revision: 555507 URL: https://svnweb.freebsd.org/changeset/ports/555507 Log: graphics/* convert to USES=sqlite PR: 251142 Approved by: portmgr (blanket, convert to USES) Modified: head/graphics/hugin/Makefile head/graphics/librasterlite/Makefile head/graphics/librasterlite2/Makefile head/graphics/libreatlas/Makefile head/graphics/mapcache/Makefile head/graphics/proj/Makefile Modified: head/graphics/hugin/Makefile ============================================================================== --- head/graphics/hugin/Makefile Mon Nov 16 18:38:51 2020 (r555506) +++ head/graphics/hugin/Makefile Mon Nov 16 18:43:43 2020 (r555507) @@ -17,7 +17,6 @@ LIB_DEPENDS= libIlmImf.so:graphics/openexr \ libexiv2.so:graphics/exiv2 \ libfftw3.so:math/fftw3 \ libpano13.so:graphics/libpano13 \ - libsqlite3.so:databases/sqlite3 \ libvigraimpex.so:graphics/vigra \ libpng.so:graphics/png \ libtiff.so:graphics/tiff @@ -29,7 +28,7 @@ RUN_DEPENDS= enblend>=4.1.4:graphics/enblend \ BROKEN_i386= Fails to build: ld: error: src/hugin_base/libhuginbase.so.0.0: undefined reference to __atomic_load USES= cmake compiler:c++11-lib desktop-file-utils gettext gl gnome \ - jpeg pkgconfig shared-mime-info shebangfix tar:bzip2 + jpeg pkgconfig shared-mime-info shebangfix sqlite tar:bzip2 CMAKE_ARGS= -DwxWidgets_CONFIG_EXECUTABLE=${WX_CONFIG} USE_WX= 3.0+ USE_GL= glew glut Modified: head/graphics/librasterlite/Makefile ============================================================================== --- head/graphics/librasterlite/Makefile Mon Nov 16 18:38:51 2020 (r555506) +++ head/graphics/librasterlite/Makefile Mon Nov 16 18:43:43 2020 (r555507) @@ -14,7 +14,6 @@ LICENSE= MPL11 GPLv2 LGPL21 LICENSE_COMB= dual LIB_DEPENDS= libspatialite.so:databases/spatialite \ - libsqlite3.so:databases/sqlite3 \ libgeotiff.so:graphics/libgeotiff \ libjbig.so:graphics/jbigkit \ libpng.so:graphics/png \ @@ -24,7 +23,7 @@ LIB_DEPENDS= libspatialite.so:databases/spatialite \ libfreexl.so:textproc/freexl GNU_CONFIGURE= yes -USES= gmake iconv jpeg libtool pathfix pkgconfig +USES= gmake iconv jpeg libtool pathfix pkgconfig sqlite USE_LDCONFIG= yes INSTALL_TARGET= install-strip Modified: head/graphics/librasterlite2/Makefile ============================================================================== --- head/graphics/librasterlite2/Makefile Mon Nov 16 18:38:51 2020 (r555506) +++ head/graphics/librasterlite2/Makefile Mon Nov 16 18:43:43 2020 (r555507) @@ -15,7 +15,6 @@ LICENSE= MPL11 GPLv2 LGPL21 LICENSE_COMB= dual LIB_DEPENDS= libspatialite.so:databases/spatialite \ - libsqlite3.so:databases/sqlite3 \ libgeotiff.so:graphics/libgeotiff \ libjbig.so:graphics/jbigkit \ libpng.so:graphics/png \ @@ -29,7 +28,7 @@ LIB_DEPENDS= libspatialite.so:databases/spatialite \ libcurl.so:ftp/curl GNU_CONFIGURE= yes -USES= gmake iconv jpeg libtool pathfix pkgconfig +USES= gmake iconv jpeg libtool pathfix pkgconfig sqlite USE_LDCONFIG= yes INSTALL_TARGET= install-strip Modified: head/graphics/libreatlas/Makefile ============================================================================== --- head/graphics/libreatlas/Makefile Mon Nov 16 18:38:51 2020 (r555506) +++ head/graphics/libreatlas/Makefile Mon Nov 16 18:43:43 2020 (r555507) @@ -15,7 +15,6 @@ LICENSE= GPLv3 BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/pthread-stubs.pc:devel/libpthread-stubs LIB_DEPENDS= libmspack.so:archivers/libmspack \ libspatialite.so:databases/spatialite \ - libsqlite3.so:databases/sqlite3 \ libpcre.so:devel/pcre \ libcairo.so:graphics/cairo \ libgeos.so:graphics/geos \ @@ -32,7 +31,7 @@ LIB_DEPENDS= libmspack.so:archivers/libmspack \ GNU_CONFIGURE= yes USES= compiler:c++11-lang gettext gmake gnome iconv jpeg pathfix \ - pkgconfig xorg + pkgconfig sqlite xorg USE_XORG= ice pixman sm x11 xau xcb xcomposite xcursor xdamage xdmcp xext \ xfixes xi xinerama xrandr xrender xxf86vm USE_GNOME= atk gdkpixbuf2 glib20 gtk20 pango Modified: head/graphics/mapcache/Makefile ============================================================================== --- head/graphics/mapcache/Makefile Mon Nov 16 18:38:51 2020 (r555506) +++ head/graphics/mapcache/Makefile Mon Nov 16 18:43:43 2020 (r555507) @@ -38,7 +38,7 @@ FASTCGI_CMAKE_ON= -DWITH_FCGI=1 FASTCGI_CMAKE_OFF= -DWITH_FCGI=0 SQLITE_DESC= Use sqlite as a cache backend -SQLITE_LIB_DEPENDS= libsqlite3.so:databases/sqlite3 +SQLITE_USES= sqlite SQLITE_CMAKE_ON= -DWITH_SQLITE=1 SQLITE_CMAKE_OFF= -DWITH_SQLITE=0 Modified: head/graphics/proj/Makefile ============================================================================== --- head/graphics/proj/Makefile Mon Nov 16 18:38:51 2020 (r555506) +++ head/graphics/proj/Makefile Mon Nov 16 18:43:43 2020 (r555507) @@ -15,9 +15,7 @@ COMMENT= Cartographic Projections library LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING -LIB_DEPENDS= libsqlite3.so:databases/sqlite3 - -USES= compiler:c++11-lang gmake libtool pathfix pkgconfig +USES= compiler:c++11-lang gmake libtool pathfix pkgconfig sqlite USE_LDCONFIG= yes GNU_CONFIGURE= yes