public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: dev-cpp/wt/
@ 2024-10-01 14:58 David Roman
  2024-10-01 14:10 ` [gentoo-commits] repo/proj/guru:dev " David Roman
  0 siblings, 1 reply; 11+ messages in thread
From: David Roman @ 2024-10-01 14:58 UTC (permalink / raw
  To: gentoo-commits

commit:     bc25e0cd71cb2ab486a37ecde2ce15847fa6aa88
Author:     David Roman <davidroman96 <AT> gmail <DOT> com>
AuthorDate: Tue Oct  1 14:09:17 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Tue Oct  1 14:09:17 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bc25e0cd

dev-cpp/wt: add 4.11.0

Signed-off-by: David Roman <davidroman96 <AT> gmail.com>

 dev-cpp/wt/Manifest         |  1 +
 dev-cpp/wt/wt-4.11.0.ebuild | 65 +++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 66 insertions(+)

diff --git a/dev-cpp/wt/Manifest b/dev-cpp/wt/Manifest
index dc7f45196..ab6cd4ddc 100644
--- a/dev-cpp/wt/Manifest
+++ b/dev-cpp/wt/Manifest
@@ -1 +1,2 @@
 DIST wt-4.10.4.tar.gz 10449928 BLAKE2B 19516d506612590fda1ba626487631397102c5634772e3435a911470d85da42803885368996a59a816400eaf623baad07dccd23c9fe769c6965b27372575aa23 SHA512 f41efec1e77bd76f6f66ffb4ff38c98cfc590debb194682e3c6eb3f7b4366c30f8e2bbc16f4c33faa45f6f49d28812215538d20f4abc6c4dc3a226ae9b10ac71
+DIST wt-4.11.0.tar.gz 10562160 BLAKE2B 5238f279c8899d976ce03b7840a4600bd22e54c8aede1cb908e3949278e61778361ccd67e3ea065f90875c15acad89553a87972078bb983857b871520ccf6669 SHA512 b437d822793261e57bb3a6024ec3fd06a7080ff053bc587e9e89f8d24c010158991827f925f0b59d43371aeeebdfc53983abd29a6c46ecf46b67bd923ca81e5a

diff --git a/dev-cpp/wt/wt-4.11.0.ebuild b/dev-cpp/wt/wt-4.11.0.ebuild
new file mode 100644
index 000000000..27ba7c4f3
--- /dev/null
+++ b/dev-cpp/wt/wt-4.11.0.ebuild
@@ -0,0 +1,65 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Wt, C++ Web Toolkit"
+HOMEPAGE="https://www.webtoolkit.eu/wt https://github.com/emweb/wt"
+SRC_URI="https://github.com/emweb/wt/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc firebird mysql opengl pdf postgres ssl"
+
+DEPEND="
+	firebird? ( dev-db/firebird )
+	mysql? ( virtual/mysql )
+	opengl? ( virtual/opengl )
+	postgres? ( dev-db/postgresql )
+	ssl? ( dev-libs/openssl )
+	<dev-libs/boost-1.85.0:=
+	media-libs/libharu
+	media-gfx/graphicsmagick[jpeg,png]
+	x11-libs/pango
+	sys-libs/zlib
+"
+RDEPEND="${DEPEND}"
+
+BDEPEND="
+	doc? (
+		app-text/doxygen[dot]
+		dev-qt/qtchooser
+		dev-qt/qthelp
+	)
+"
+# for qt6 dev-qt/qttools[qdoc]
+
+PATCHES=( "${FILESDIR}/wt-no-rundir.patch")
+
+src_configure() {
+	# TODO
+	#-DENABLE_QT6=$(usex qt6)
+
+	local mycmakeargs=(
+		-DLIB_INSTALL_DIR=$(get_libdir)
+		-DBUILD_EXAMPLES=OFF
+		-DINSTALL_DOCUMENTATION=$(usex doc)
+		-DDOCUMENTATION_DESTINATION="share/doc/${PF}"
+		-DENABLE_SSL=$(usex ssl)
+		-DENABLE_HARU=$(usex pdf)
+		-DENABLE_PANGO=ON
+		-DENABLE_SQLITE=ON
+		-DENABLE_POSTGRES=$(usex postgres)
+		-DENABLE_FIREBIRD=$(usex firebird)
+		-DENABLE_MYSQL=$(usex mysql)
+		-DENABLE_QT4=OFF
+		-DENABLE_QT5=ON
+		-DENABLE_SAML=ON
+		-DENABLE_OPENGL=$(usex opengl)
+	)
+
+	cmake_src_configure
+}


^ permalink raw reply related	[flat|nested] 11+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/wt/
@ 2024-10-07  9:14 David Roman
  0 siblings, 0 replies; 11+ messages in thread
From: David Roman @ 2024-10-07  9:14 UTC (permalink / raw
  To: gentoo-commits

commit:     49f7f23ca1e46936100077a0237d6b19f212300d
Author:     PPN-SD <nicolas.parlant <AT> parhuet <DOT> fr>
AuthorDate: Sat Oct  5 20:14:56 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Mon Oct  7 09:13:50 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=49f7f23c

dev-cpp/wt: Get ride of restriction for boost.

Signed-off-by: PPN-SD <nicolas.parlant <AT> parhuet.fr>
Closes: https://github.com/gentoo/guru/pull/248
Signed-off-by: David Roman <davidroman96 <AT> gmail.com>

 dev-cpp/wt/wt-4.11.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/wt/wt-4.11.0.ebuild b/dev-cpp/wt/wt-4.11.0.ebuild
index 27ba7c4f3..a97475298 100644
--- a/dev-cpp/wt/wt-4.11.0.ebuild
+++ b/dev-cpp/wt/wt-4.11.0.ebuild
@@ -20,7 +20,7 @@ DEPEND="
 	opengl? ( virtual/opengl )
 	postgres? ( dev-db/postgresql )
 	ssl? ( dev-libs/openssl )
-	<dev-libs/boost-1.85.0:=
+	dev-libs/boost:=
 	media-libs/libharu
 	media-gfx/graphicsmagick[jpeg,png]
 	x11-libs/pango


^ permalink raw reply related	[flat|nested] 11+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/wt/
@ 2024-06-10 15:09 David Roman
  0 siblings, 0 replies; 11+ messages in thread
From: David Roman @ 2024-06-10 15:09 UTC (permalink / raw
  To: gentoo-commits

commit:     2b7fd4daabc3eae045c411c53d5cdcd227724365
Author:     David Roman <davidroman96 <AT> gmail <DOT> com>
AuthorDate: Mon Jun 10 15:06:51 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Mon Jun 10 15:06:51 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2b7fd4da

dev-cpp/wt: fix build time issue

wt depends on a functionality that has been removed in latest boost
version.

Signed-off-by: David Roman <davidroman96 <AT> gmail.com>

 dev-cpp/wt/wt-4.10.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/wt/wt-4.10.4.ebuild b/dev-cpp/wt/wt-4.10.4.ebuild
index ea38bb582..3f791ec53 100644
--- a/dev-cpp/wt/wt-4.10.4.ebuild
+++ b/dev-cpp/wt/wt-4.10.4.ebuild
@@ -20,7 +20,7 @@ DEPEND="
 	opengl? ( virtual/opengl )
 	postgres? ( dev-db/postgresql )
 	ssl? ( dev-libs/openssl )
-	dev-libs/boost
+	<dev-libs/boost-1.85.0
 	media-libs/libharu
 	media-gfx/graphicsmagick[jpeg,png]
 	x11-libs/pango


^ permalink raw reply related	[flat|nested] 11+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/wt/
@ 2024-06-10 15:03 David Roman
  0 siblings, 0 replies; 11+ messages in thread
From: David Roman @ 2024-06-10 15:03 UTC (permalink / raw
  To: gentoo-commits

commit:     4c91f557e862b487e8c79ece6f8bcc150f875cf2
Author:     David Roman <davidroman96 <AT> gmail <DOT> com>
AuthorDate: Mon Jun 10 08:24:42 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Mon Jun 10 15:02:47 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4c91f557

dev-cpp/wt: drop 4.10.3

Signed-off-by: David Roman <davidroman96 <AT> gmail.com>

 dev-cpp/wt/Manifest         |  1 -
 dev-cpp/wt/wt-4.10.3.ebuild | 64 ---------------------------------------------
 2 files changed, 65 deletions(-)

diff --git a/dev-cpp/wt/Manifest b/dev-cpp/wt/Manifest
index b571d47b0..dc7f45196 100644
--- a/dev-cpp/wt/Manifest
+++ b/dev-cpp/wt/Manifest
@@ -1,2 +1 @@
-DIST wt-4.10.3.tar.gz 10443169 BLAKE2B f5f6cdb0024001522bfc10b30c0f3b819be643c81a61e66ba548d284749a82b5fda78e10a5c82efd2b1ec0f1bf8ccc29d38dbf0ec0f20eead5be400467440f00 SHA512 cf81f2ec08741aba6c102b5558dccc82623d7073130bbaa9be1168751b3047bd411acf19ac1f20303b722dc5db05b667c7c7cb213fbc6930918b6cff8d1aad6b
 DIST wt-4.10.4.tar.gz 10449928 BLAKE2B 19516d506612590fda1ba626487631397102c5634772e3435a911470d85da42803885368996a59a816400eaf623baad07dccd23c9fe769c6965b27372575aa23 SHA512 f41efec1e77bd76f6f66ffb4ff38c98cfc590debb194682e3c6eb3f7b4366c30f8e2bbc16f4c33faa45f6f49d28812215538d20f4abc6c4dc3a226ae9b10ac71

diff --git a/dev-cpp/wt/wt-4.10.3.ebuild b/dev-cpp/wt/wt-4.10.3.ebuild
deleted file mode 100644
index e9d153bce..000000000
--- a/dev-cpp/wt/wt-4.10.3.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="Wt, C++ Web Toolkit"
-HOMEPAGE="https://www.webtoolkit.eu/wt https://github.com/emweb/wt"
-SRC_URI="https://github.com/emweb/wt/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="doc firebird mysql pdf postgres ssl"
-
-DEPEND="
-	firebird? ( dev-db/firebird )
-	mysql? ( virtual/mysql )
-	postgres? ( dev-db/postgresql )
-	ssl? ( dev-libs/openssl )
-	dev-libs/boost
-	media-libs/libharu
-	media-gfx/graphicsmagick
-	x11-libs/pango
-	sys-libs/zlib
-	virtual/opengl
-"
-RDEPEND="${DEPEND}"
-
-BDEPEND="
-	doc? (
-		app-text/doxygen[dot]
-		dev-qt/qtchooser
-		dev-qt/qthelp
-	)
-"
-# for qt6 dev-qt/qttools[qdoc]
-
-PATCHES=( "${FILESDIR}/wt-no-rundir.patch")
-
-src_configure() {
-	# TODO
-	#-DENABLE_QT6=$(usex qt6)
-
-	local mycmakeargs=(
-		-DLIB_INSTALL_DIR=$(get_libdir)
-		-DBUILD_EXAMPLES=OFF
-		-DINSTALL_DOCUMENTATION=$(usex doc)
-		-DDOCUMENTATION_DESTINATION="share/doc/${PF}"
-		-DENABLE_SSL=$(usex ssl)
-		-DENABLE_HARU=$(usex pdf)
-		-DENABLE_PANGO=ON
-		-DENABLE_SQLITE=ON
-		-DENABLE_POSTGRES=$(usex postgres)
-		-DENABLE_FIREBIRD=$(usex firebird)
-		-DENABLE_MYSQL=$(usex mysql)
-		-DENABLE_QT4=OFF
-		-DENABLE_QT5=ON
-		-DENABLE_SAML=ON
-	)
-
-	cmake_src_configure
-}


^ permalink raw reply related	[flat|nested] 11+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/wt/
@ 2024-03-22 20:55 David Roman
  0 siblings, 0 replies; 11+ messages in thread
From: David Roman @ 2024-03-22 20:55 UTC (permalink / raw
  To: gentoo-commits

commit:     529ba4e8f4447ddf0a73aa80379cda191db3f40e
Author:     David Roman <davidroman96 <AT> gmail <DOT> com>
AuthorDate: Fri Mar 22 20:54:52 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Fri Mar 22 20:54:52 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=529ba4e8

dev-cpp/wt: fix runtime segfault

Signed-off-by: David Roman <davidroman96 <AT> gmail.com>

 dev-cpp/wt/wt-4.10.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/wt/wt-4.10.4.ebuild b/dev-cpp/wt/wt-4.10.4.ebuild
index 51664130e1..ea38bb5825 100644
--- a/dev-cpp/wt/wt-4.10.4.ebuild
+++ b/dev-cpp/wt/wt-4.10.4.ebuild
@@ -22,7 +22,7 @@ DEPEND="
 	ssl? ( dev-libs/openssl )
 	dev-libs/boost
 	media-libs/libharu
-	media-gfx/graphicsmagick
+	media-gfx/graphicsmagick[jpeg,png]
 	x11-libs/pango
 	sys-libs/zlib
 "


^ permalink raw reply related	[flat|nested] 11+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/wt/
@ 2024-03-22 13:37 David Roman
  0 siblings, 0 replies; 11+ messages in thread
From: David Roman @ 2024-03-22 13:37 UTC (permalink / raw
  To: gentoo-commits

commit:     4c8ad87f6dba9e09888cb403951aaf436ad3f7f9
Author:     David Roman <davidroman96 <AT> gmail <DOT> com>
AuthorDate: Fri Mar 22 13:37:16 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Fri Mar 22 13:37:16 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4c8ad87f

dev-cpp/wt: add opengl USE

Signed-off-by: David Roman <davidroman96 <AT> gmail.com>

 dev-cpp/wt/wt-4.10.4.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/dev-cpp/wt/wt-4.10.4.ebuild b/dev-cpp/wt/wt-4.10.4.ebuild
index e9d153bce1..51664130e1 100644
--- a/dev-cpp/wt/wt-4.10.4.ebuild
+++ b/dev-cpp/wt/wt-4.10.4.ebuild
@@ -12,11 +12,12 @@ SRC_URI="https://github.com/emweb/wt/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64"
-IUSE="doc firebird mysql pdf postgres ssl"
+IUSE="doc firebird mysql opengl pdf postgres ssl"
 
 DEPEND="
 	firebird? ( dev-db/firebird )
 	mysql? ( virtual/mysql )
+	opengl? ( virtual/opengl )
 	postgres? ( dev-db/postgresql )
 	ssl? ( dev-libs/openssl )
 	dev-libs/boost
@@ -24,7 +25,6 @@ DEPEND="
 	media-gfx/graphicsmagick
 	x11-libs/pango
 	sys-libs/zlib
-	virtual/opengl
 "
 RDEPEND="${DEPEND}"
 
@@ -58,6 +58,7 @@ src_configure() {
 		-DENABLE_QT4=OFF
 		-DENABLE_QT5=ON
 		-DENABLE_SAML=ON
+		-DENABLE_OPENGL=$(usex opengl)
 	)
 
 	cmake_src_configure


^ permalink raw reply related	[flat|nested] 11+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-cpp/wt/
@ 2024-03-11 17:31 David Roman
  2024-03-11 13:50 ` [gentoo-commits] repo/proj/guru:dev " David Roman
  0 siblings, 1 reply; 11+ messages in thread
From: David Roman @ 2024-03-11 17:31 UTC (permalink / raw
  To: gentoo-commits

commit:     8ba1f05d0b3b0bf31eeff86f25ec4c98edb8de7c
Author:     David Roman <davidroman96 <AT> gmail <DOT> com>
AuthorDate: Mon Mar 11 13:50:03 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Mon Mar 11 13:50:03 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8ba1f05d

dev-cpp/wt: fix doc install path

Closes: https://bugs.gentoo.org/925701
Signed-off-by: David Roman <davidroman96 <AT> gmail.com>

 dev-cpp/wt/wt-4.10.3.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-cpp/wt/wt-4.10.3.ebuild b/dev-cpp/wt/wt-4.10.3.ebuild
index e742f1c4fa..e9d153bce1 100644
--- a/dev-cpp/wt/wt-4.10.3.ebuild
+++ b/dev-cpp/wt/wt-4.10.3.ebuild
@@ -47,6 +47,7 @@ src_configure() {
 		-DLIB_INSTALL_DIR=$(get_libdir)
 		-DBUILD_EXAMPLES=OFF
 		-DINSTALL_DOCUMENTATION=$(usex doc)
+		-DDOCUMENTATION_DESTINATION="share/doc/${PF}"
 		-DENABLE_SSL=$(usex ssl)
 		-DENABLE_HARU=$(usex pdf)
 		-DENABLE_PANGO=ON


^ permalink raw reply related	[flat|nested] 11+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/wt/
@ 2024-03-11 14:06 David Roman
  0 siblings, 0 replies; 11+ messages in thread
From: David Roman @ 2024-03-11 14:06 UTC (permalink / raw
  To: gentoo-commits

commit:     8e0f6a8d24e191e914f6cd380afd8b0761a7af45
Author:     David Roman <davidroman96 <AT> gmail <DOT> com>
AuthorDate: Mon Mar 11 14:03:55 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Mon Mar 11 14:06:35 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8e0f6a8d

dev-cpp/wt: add 4.10.4

Signed-off-by: David Roman <davidroman96 <AT> gmail.com>

 dev-cpp/wt/Manifest         |  1 +
 dev-cpp/wt/wt-4.10.4.ebuild | 64 +++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 65 insertions(+)

diff --git a/dev-cpp/wt/Manifest b/dev-cpp/wt/Manifest
index b28f49bb5a..b571d47b0d 100644
--- a/dev-cpp/wt/Manifest
+++ b/dev-cpp/wt/Manifest
@@ -1 +1,2 @@
 DIST wt-4.10.3.tar.gz 10443169 BLAKE2B f5f6cdb0024001522bfc10b30c0f3b819be643c81a61e66ba548d284749a82b5fda78e10a5c82efd2b1ec0f1bf8ccc29d38dbf0ec0f20eead5be400467440f00 SHA512 cf81f2ec08741aba6c102b5558dccc82623d7073130bbaa9be1168751b3047bd411acf19ac1f20303b722dc5db05b667c7c7cb213fbc6930918b6cff8d1aad6b
+DIST wt-4.10.4.tar.gz 10449928 BLAKE2B 19516d506612590fda1ba626487631397102c5634772e3435a911470d85da42803885368996a59a816400eaf623baad07dccd23c9fe769c6965b27372575aa23 SHA512 f41efec1e77bd76f6f66ffb4ff38c98cfc590debb194682e3c6eb3f7b4366c30f8e2bbc16f4c33faa45f6f49d28812215538d20f4abc6c4dc3a226ae9b10ac71

diff --git a/dev-cpp/wt/wt-4.10.4.ebuild b/dev-cpp/wt/wt-4.10.4.ebuild
new file mode 100644
index 0000000000..e9d153bce1
--- /dev/null
+++ b/dev-cpp/wt/wt-4.10.4.ebuild
@@ -0,0 +1,64 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Wt, C++ Web Toolkit"
+HOMEPAGE="https://www.webtoolkit.eu/wt https://github.com/emweb/wt"
+SRC_URI="https://github.com/emweb/wt/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc firebird mysql pdf postgres ssl"
+
+DEPEND="
+	firebird? ( dev-db/firebird )
+	mysql? ( virtual/mysql )
+	postgres? ( dev-db/postgresql )
+	ssl? ( dev-libs/openssl )
+	dev-libs/boost
+	media-libs/libharu
+	media-gfx/graphicsmagick
+	x11-libs/pango
+	sys-libs/zlib
+	virtual/opengl
+"
+RDEPEND="${DEPEND}"
+
+BDEPEND="
+	doc? (
+		app-text/doxygen[dot]
+		dev-qt/qtchooser
+		dev-qt/qthelp
+	)
+"
+# for qt6 dev-qt/qttools[qdoc]
+
+PATCHES=( "${FILESDIR}/wt-no-rundir.patch")
+
+src_configure() {
+	# TODO
+	#-DENABLE_QT6=$(usex qt6)
+
+	local mycmakeargs=(
+		-DLIB_INSTALL_DIR=$(get_libdir)
+		-DBUILD_EXAMPLES=OFF
+		-DINSTALL_DOCUMENTATION=$(usex doc)
+		-DDOCUMENTATION_DESTINATION="share/doc/${PF}"
+		-DENABLE_SSL=$(usex ssl)
+		-DENABLE_HARU=$(usex pdf)
+		-DENABLE_PANGO=ON
+		-DENABLE_SQLITE=ON
+		-DENABLE_POSTGRES=$(usex postgres)
+		-DENABLE_FIREBIRD=$(usex firebird)
+		-DENABLE_MYSQL=$(usex mysql)
+		-DENABLE_QT4=OFF
+		-DENABLE_QT5=ON
+		-DENABLE_SAML=ON
+	)
+
+	cmake_src_configure
+}


^ permalink raw reply related	[flat|nested] 11+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/wt/
@ 2024-02-28  1:31 David Roman
  0 siblings, 0 replies; 11+ messages in thread
From: David Roman @ 2024-02-28  1:31 UTC (permalink / raw
  To: gentoo-commits

commit:     bff06ef0b345d79dbe6da3d0008cc733eb8a9d28
Author:     David Roman <davidroman96 <AT> gmail <DOT> com>
AuthorDate: Wed Feb 28 01:30:45 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Wed Feb 28 01:31:36 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bff06ef0

dev-cpp/wt: fix doc building

Closes: https://bugs.gentoo.org/925331
Signed-off-by: David Roman <davidroman96 <AT> gmail.com>

 dev-cpp/wt/wt-4.10.3.ebuild | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/dev-cpp/wt/wt-4.10.3.ebuild b/dev-cpp/wt/wt-4.10.3.ebuild
index b5d531a859..e742f1c4fa 100644
--- a/dev-cpp/wt/wt-4.10.3.ebuild
+++ b/dev-cpp/wt/wt-4.10.3.ebuild
@@ -28,6 +28,15 @@ DEPEND="
 "
 RDEPEND="${DEPEND}"
 
+BDEPEND="
+	doc? (
+		app-text/doxygen[dot]
+		dev-qt/qtchooser
+		dev-qt/qthelp
+	)
+"
+# for qt6 dev-qt/qttools[qdoc]
+
 PATCHES=( "${FILESDIR}/wt-no-rundir.patch")
 
 src_configure() {


^ permalink raw reply related	[flat|nested] 11+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/wt/
@ 2024-02-22 15:53 David Roman
  0 siblings, 0 replies; 11+ messages in thread
From: David Roman @ 2024-02-22 15:53 UTC (permalink / raw
  To: gentoo-commits

commit:     4466410b6cd8fe47cb0230977c7057c682240466
Author:     David Roman <davidroman96 <AT> gmail <DOT> com>
AuthorDate: Thu Feb 22 15:53:10 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Thu Feb 22 15:53:10 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4466410b

dev-cpp/wt: add missing dep

Signed-off-by: David Roman <davidroman96 <AT> gmail.com>

 dev-cpp/wt/wt-4.10.3.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-cpp/wt/wt-4.10.3.ebuild b/dev-cpp/wt/wt-4.10.3.ebuild
index 6a323d81a3..b5d531a859 100644
--- a/dev-cpp/wt/wt-4.10.3.ebuild
+++ b/dev-cpp/wt/wt-4.10.3.ebuild
@@ -19,6 +19,7 @@ DEPEND="
 	mysql? ( virtual/mysql )
 	postgres? ( dev-db/postgresql )
 	ssl? ( dev-libs/openssl )
+	dev-libs/boost
 	media-libs/libharu
 	media-gfx/graphicsmagick
 	x11-libs/pango


^ permalink raw reply related	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2024-10-07  9:14 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-01 14:58 [gentoo-commits] repo/proj/guru:master commit in: dev-cpp/wt/ David Roman
2024-10-01 14:10 ` [gentoo-commits] repo/proj/guru:dev " David Roman
  -- strict thread matches above, loose matches on Subject: below --
2024-10-07  9:14 David Roman
2024-06-10 15:09 David Roman
2024-06-10 15:03 David Roman
2024-03-22 20:55 David Roman
2024-03-22 13:37 David Roman
2024-03-11 17:31 [gentoo-commits] repo/proj/guru:master " David Roman
2024-03-11 13:50 ` [gentoo-commits] repo/proj/guru:dev " David Roman
2024-03-11 14:06 David Roman
2024-02-28  1:31 David Roman
2024-02-22 15:53 David Roman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox