summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Goodliffe <dan.goodliffe@octal.co.uk>2026-08-14 10:24:19 +0100
committerDan Goodliffe <dan.goodliffe@octal.co.uk>2026-08-14 10:24:19 +0100
commite33920435a9faa0af0ad803f30c44d48add9533a (patch)
tree0b9a570980eab17585f3b423718d004f89f81e98
parentBump webstat (diff)
downloadportage-e33920435a9faa0af0ad803f30c44d48add9533a.tar.bz2
portage-e33920435a9faa0af0ad803f30c44d48add9533a.tar.xz
portage-e33920435a9faa0af0ad803f30c44d48add9533a.zip
webstat-0.7.2 bump
-rw-r--r--www-misc/webstat/Manifest2
-rw-r--r--www-misc/webstat/webstat-0.7.2.ebuild35
2 files changed, 37 insertions, 0 deletions
diff --git a/www-misc/webstat/Manifest b/www-misc/webstat/Manifest
index 7b2f6fa..efcca45 100644
--- a/www-misc/webstat/Manifest
+++ b/www-misc/webstat/Manifest
@@ -1,3 +1,5 @@
DIST scnlib-4.0.1.tar.gz 434107 BLAKE2B 6f7347f739bc90723338e2da912701cacc376121c0c62bbfd51d7ed80a07dd00c801bbf82113a24ca342d887942a19f29cc84ca869d2572b2689e963042ef2a6 SHA512 db14d71da3c1ecb849f00ac1e334f39c532592230e950aa1009ff00ba56670cb71e33ca457fd4ac66595ff43f0dca0e42d45f672848b9cde3cba80f19ef8693f
DIST webstat-0.7.1.tar.xz 23344 BLAKE2B 6c46e7e03589883718348ded6c085840941d3f1dcbf9abd3089f0f23a6bd037a57ff6a901bb24e452f68cdee52b9f71a70ea9683a986e66912a37480c3ce5ae8 SHA512 858bfe3488ce68bdcbfa61a59cea3008b5a73d319ff11f207ba07e2ffdb5eeb4e2f1f4a040d105ebc9f56d2de5f5375dbd4f199a89d2046537524c381ad8fe29
+DIST webstat-0.7.2.tar.xz 23652 BLAKE2B 45539b77e273cee3bddb01db69ee155d4856cf42349fd0836fc62d7d5d9492caa9aa0d3443cd97b635f8f22fed0db82458fc2a499b968fdb058361f08c8d1e58 SHA512 9a579fb83a9e4539498bff9dbc5e8618dbb811b1ed3b8f1e2078857accd06bebab8ac8b218234d12e2790cd1177a5ea77ad42e6a76ae6c961347cd1d6cd12cf4
EBUILD webstat-0.7.1.ebuild 742 BLAKE2B 8810b07f7435c6aff94e1e1c6f4f98e341de37ff46a38e5e0e73a80776d42b939e829cc12b417e251b270e69844e8a0021b002276ab3a86beaf321332203951b SHA512 66fc5fecef47d375d0031d641d8b7bf865a0388bf8e48355a154346155f95dfe2723221dd3d7c74d0596a4eb2ec2d624d0cb4bd89dad80a8c83e252f3b8b9b5a
+EBUILD webstat-0.7.2.ebuild 742 BLAKE2B 8810b07f7435c6aff94e1e1c6f4f98e341de37ff46a38e5e0e73a80776d42b939e829cc12b417e251b270e69844e8a0021b002276ab3a86beaf321332203951b SHA512 66fc5fecef47d375d0031d641d8b7bf865a0388bf8e48355a154346155f95dfe2723221dd3d7c74d0596a4eb2ec2d624d0cb4bd89dad80a8c83e252f3b8b9b5a
diff --git a/www-misc/webstat/webstat-0.7.2.ebuild b/www-misc/webstat/webstat-0.7.2.ebuild
new file mode 100644
index 0000000..e36cf0e
--- /dev/null
+++ b/www-misc/webstat/webstat-0.7.2.ebuild
@@ -0,0 +1,35 @@
+EAPI=8
+inherit bjam
+
+DESCRIPTION="WebStat web site access analyser"
+HOMEPAGE="https://git.randomdan.homeip.net/repo/webstat/"
+SRC_URI="https://git.randomdan.homeip.net/repo/${PN}/snapshot/${P}.tar.xz
+ https://github.com/eliaskosunen/scnlib/archive/refs/tags/v4.0.1.tar.gz -> scnlib-4.0.1.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND="
+ app-crypt/libmd
+ >=dev-libs/libdbpp-1.4.10:=
+ >=dev-libs/libdbpp-postgresql-1.4.10
+ >=dev-libs/libadhocutil-0.9.3:="
+RDEPEND="${DEPEND}"
+BDEPEND="${DEPEND}
+ virtual/pkgconfig
+ dev-build/b2"
+
+src_prepare() {
+ default
+ rmdir ${S}/thirdparty/scnlib
+ ln -sf ${WORKDIR}/scnlib-4.0.1 ${S}/thirdparty/scnlib
+}
+
+src_compile() {
+ bjambuild src//webstat_logger
+}
+
+src_install() {
+ bjaminstall install
+}