mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-16 10:33:28 -04:00
dev-cpp/wt: new package, add 4.10.3
Signed-off-by: David Roman <davidroman96@gmail.com>
This commit is contained in:
53
dev-cpp/wt/wt-4.10.3.ebuild
Normal file
53
dev-cpp/wt/wt-4.10.3.ebuild
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user