diff options
author | David Roman <davidroman96@gmail.com> | 2024-06-10 10:24:42 +0200 |
---|---|---|
committer | David Roman <davidroman96@gmail.com> | 2024-06-10 17:02:47 +0200 |
commit | 4c91f557e862b487e8c79ece6f8bcc150f875cf2 (patch) | |
tree | 78c49b13f07b4884cf399279a7c1551b81c1286b /dev-cpp | |
parent | dev-util/mock-core-configs: drop 40.4 (diff) | |
download | guru-4c91f557e862b487e8c79ece6f8bcc150f875cf2.tar.gz guru-4c91f557e862b487e8c79ece6f8bcc150f875cf2.tar.bz2 guru-4c91f557e862b487e8c79ece6f8bcc150f875cf2.zip |
dev-cpp/wt: drop 4.10.3
Signed-off-by: David Roman <davidroman96@gmail.com>
Diffstat (limited to 'dev-cpp')
-rw-r--r-- | dev-cpp/wt/Manifest | 1 | ||||
-rw-r--r-- | dev-cpp/wt/wt-4.10.3.ebuild | 64 |
2 files changed, 0 insertions, 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 -} |