summaryrefslogtreecommitdiff
path: root/dev-db/wxsqlite3
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 05:48:38 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 05:48:38 -0500
commitbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (patch)
tree0d7a74b4463ee387f9cf9368ceb1b757f694f72a /dev-db/wxsqlite3
parentf716a9fe6455d39eef01e718aae68dae61c19704 (diff)
downloadbaldeagleos-repo-bfd9c39e4712ebdb442d4ca0673061faed1e70e1.tar.gz
baldeagleos-repo-bfd9c39e4712ebdb442d4ca0673061faed1e70e1.tar.xz
baldeagleos-repo-bfd9c39e4712ebdb442d4ca0673061faed1e70e1.zip
Revert "Adding metadata"
This reverts commit f716a9fe6455d39eef01e718aae68dae61c19704.
Diffstat (limited to 'dev-db/wxsqlite3')
-rw-r--r--dev-db/wxsqlite3/Manifest2
-rw-r--r--dev-db/wxsqlite3/metadata.xml14
-rw-r--r--dev-db/wxsqlite3/wxsqlite3-4.12.3.ebuild55
-rw-r--r--dev-db/wxsqlite3/wxsqlite3-4.12.4.ebuild55
4 files changed, 126 insertions, 0 deletions
diff --git a/dev-db/wxsqlite3/Manifest b/dev-db/wxsqlite3/Manifest
new file mode 100644
index 000000000000..1a465d2fd352
--- /dev/null
+++ b/dev-db/wxsqlite3/Manifest
@@ -0,0 +1,2 @@
+DIST wxsqlite3-4.12.3.tar.gz 9863528 BLAKE2B 824cd2c814691eea407ea57d2d1613d83a6cddc8280974143227dd66381811885969788f6baca6aac3c22e7ccb9e4414a115d9e7acc4b896550c3ba95e7a477f SHA512 94a2e2c27feab043f429b625355747c2536d6d4fee1b8711ab2a1c54a388289f4daca553006909db18eeecb4a7cfc32704cf0caa9e9a325518aa6798c25bc24b
+DIST wxsqlite3-4.12.4.tar.gz 9863923 BLAKE2B b84fd392f524a53b36e779e50d9358619955ad4247174be41dc165c77f34f7745f5a85ba2705dabd0d06656cecc826d7da85835eb593b17de35d2675727d6e34 SHA512 d460427e484b7cde019a39db28e228e0199aada79a1c4ebd3c31d4f0546a47a26c9f6bc762a57751d38b583861f01861dca65c421a4cd141d46b069aa226c986
diff --git a/dev-db/wxsqlite3/metadata.xml b/dev-db/wxsqlite3/metadata.xml
new file mode 100644
index 000000000000..719801c4254e
--- /dev/null
+++ b/dev-db/wxsqlite3/metadata.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://liguros.gitlab.io/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="project">
+ <email>dev@liguros.net</email>
+ <name>Development</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>wxwidgets@gentoo.org</email>
+ <name>Gentoo wxWidgets Project</name>
+ </maintainer>
+
+ <origin>ports</origin>
+</pkgmetadata> \ No newline at end of file
diff --git a/dev-db/wxsqlite3/wxsqlite3-4.12.3.ebuild b/dev-db/wxsqlite3/wxsqlite3-4.12.3.ebuild
new file mode 100644
index 000000000000..4a92c7f62899
--- /dev/null
+++ b/dev-db/wxsqlite3/wxsqlite3-4.12.3.ebuild
@@ -0,0 +1,55 @@
+# Copyright 2021-2026 Liguros Authors
+# Distributed under the terms of the GNU General Public License v2
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="C++ wrapper around the public domain SQLite 3.x database"
+HOMEPAGE="https://utelle.github.io/wxsqlite3/docs/html/index.html"
+SRC_URI="https://github.com/utelle/wxsqlite3/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="wxWinLL-3"
+SLOT="0"
+KEYWORDS="amd64 x86"
+IUSE="doc"
+
+DEPEND="
+ x11-libs/wxGTK[X]
+ dev-db/sqlite:3
+ doc? (
+ app-text/doxygen[dot]
+ )"
+RDEPEND="${DEPEND}"
+
+DOCS=(readme.md COPYING.txt GPL-3.0.txt LGPL-3.0.txt LICENCE.txt )
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ econf --prefix="${EPREFIX}/usr" --enable-shared --with-wx-config="${WX_CONFIG}"
+ default
+}
+
+src_compile() {
+ default
+
+ if use doc; then
+ pushd docs
+ doxygen Doxyfile || die
+ popd
+ fi
+}
+
+src_install() {
+ default
+ insinto /usr/$(get_libdir)/pkgconfig
+ doins ${PN}.pc
+
+ if use doc; then
+ HTML_DOCS=( docs/html/* )
+ einstalldocs
+ fi
+}
diff --git a/dev-db/wxsqlite3/wxsqlite3-4.12.4.ebuild b/dev-db/wxsqlite3/wxsqlite3-4.12.4.ebuild
new file mode 100644
index 000000000000..4a92c7f62899
--- /dev/null
+++ b/dev-db/wxsqlite3/wxsqlite3-4.12.4.ebuild
@@ -0,0 +1,55 @@
+# Copyright 2021-2026 Liguros Authors
+# Distributed under the terms of the GNU General Public License v2
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="C++ wrapper around the public domain SQLite 3.x database"
+HOMEPAGE="https://utelle.github.io/wxsqlite3/docs/html/index.html"
+SRC_URI="https://github.com/utelle/wxsqlite3/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="wxWinLL-3"
+SLOT="0"
+KEYWORDS="amd64 x86"
+IUSE="doc"
+
+DEPEND="
+ x11-libs/wxGTK[X]
+ dev-db/sqlite:3
+ doc? (
+ app-text/doxygen[dot]
+ )"
+RDEPEND="${DEPEND}"
+
+DOCS=(readme.md COPYING.txt GPL-3.0.txt LGPL-3.0.txt LICENCE.txt )
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ econf --prefix="${EPREFIX}/usr" --enable-shared --with-wx-config="${WX_CONFIG}"
+ default
+}
+
+src_compile() {
+ default
+
+ if use doc; then
+ pushd docs
+ doxygen Doxyfile || die
+ popd
+ fi
+}
+
+src_install() {
+ default
+ insinto /usr/$(get_libdir)/pkgconfig
+ doins ${PN}.pc
+
+ if use doc; then
+ HTML_DOCS=( docs/html/* )
+ einstalldocs
+ fi
+}