dev-cpp/wt: new package, add 4.10.3

Signed-off-by: David Roman <davidroman96@gmail.com>
This commit is contained in:
David Roman
2024-02-22 16:28:47 +01:00
parent cc6b080745
commit 1d4fbe9784
4 changed files with 79 additions and 0 deletions

1
dev-cpp/wt/Manifest Normal file
View File

@@ -0,0 +1 @@
DIST wt-4.10.3.tar.gz 10443169 BLAKE2B f5f6cdb0024001522bfc10b30c0f3b819be643c81a61e66ba548d284749a82b5fda78e10a5c82efd2b1ec0f1bf8ccc29d38dbf0ec0f20eead5be400467440f00 SHA512 cf81f2ec08741aba6c102b5558dccc82623d7073130bbaa9be1168751b3047bd411acf19ac1f20303b722dc5db05b667c7c7cb213fbc6930918b6cff8d1aad6b

View File

@@ -0,0 +1,14 @@
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 887e5de6..a8d559ab 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -132,9 +132,6 @@ ELSE(WIN32)
SET(CONFIG_PREFIX ${CMAKE_INSTALL_PREFIX})
ENDIF()
- SET(RUNDIR "${CONFIG_PREFIX}/var/run/wt" CACHE PATH
- "Default path for wt session management (only used by FCGI connector)")
-
IF(NOT DEFINED CONFIGDIR)
SET(CONFIGDIR "${CONFIG_PREFIX}/etc/wt" CACHE STRING "Path for the configuration files")
ENDIF( NOT DEFINED CONFIGDIR )

11
dev-cpp/wt/metadata.xml Normal file
View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>davidroman96@gmail.com</email>
<name>David Roman</name>
</maintainer>
<upstream>
<remote-id type="github">emweb/wt</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,53 @@
# 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 )
media-libs/libharu
media-gfx/graphicsmagick
x11-libs/pango
sys-libs/zlib
virtual/opengl
"
RDEPEND="${DEPEND}"
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)
-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
}