diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-10-08 12:10:12 +0100 |
---|---|---|
committer | Dan Goodliffe <dan.goodliffe@octal.co.uk> | 2025-10-08 12:10:12 +0100 |
commit | a1b34b9f7b88ae34f16d4d88666010719884a927 (patch) | |
tree | 00513e04842d2d5868f74630a8c307a1bc9c7bbe /www-misc | |
parent | Add squirrel-sql v5.0.0 (diff) | |
download | portage-a1b34b9f7b88ae34f16d4d88666010719884a927.tar.bz2 portage-a1b34b9f7b88ae34f16d4d88666010719884a927.tar.xz portage-a1b34b9f7b88ae34f16d4d88666010719884a927.zip |
Bump webstat
Diffstat (limited to 'www-misc')
-rw-r--r-- | www-misc/webstat/Manifest | 2 | ||||
-rw-r--r-- | www-misc/webstat/webstat-0.2.ebuild | 34 |
2 files changed, 36 insertions, 0 deletions
diff --git a/www-misc/webstat/Manifest b/www-misc/webstat/Manifest index cc9ba83..1e0b4f5 100644 --- a/www-misc/webstat/Manifest +++ b/www-misc/webstat/Manifest @@ -1,3 +1,5 @@ DIST v4.0.1.tar.gz 434107 BLAKE2B 6f7347f739bc90723338e2da912701cacc376121c0c62bbfd51d7ed80a07dd00c801bbf82113a24ca342d887942a19f29cc84ca869d2572b2689e963042ef2a6 SHA512 db14d71da3c1ecb849f00ac1e334f39c532592230e950aa1009ff00ba56670cb71e33ca457fd4ac66595ff43f0dca0e42d45f672848b9cde3cba80f19ef8693f DIST webstat-0.1.1.tar.xz 8932 BLAKE2B 4204a5766f5d32679d4d2344852b0e2f39b2eacb0e138f2b2ca7bb028ef6f11a51658d8ba6b434ff6f23e7e044fffc1a2d50300d3d422efd9f0e0d438fc1adea SHA512 f982043456ca83d73bc518a5f186640fe598c8b72d213d352cbae49e21221b821927c34c7495f1cb10c62731702fef655c71e224fd1b7932a8719a5c91c31b63 +DIST webstat-0.2.tar.xz 13020 BLAKE2B 1649de4c952c38b4c34c6babf51116102588b3e28f655543e0798b24805a6d043c0ad78be12d1dc4e7fcc6b76cb2510438ef0ed0a77e5f41289ae2f2e6921ba3 SHA512 25fc05bc6e121c778ed83e129aa963f8f42aa5349a0da8c7060a2f37a7d6b180a3e2eaf562c2dcd95488a80585a69c29c6d2873098de9bc69416c56ca51bf1e7 EBUILD webstat-0.1.1.ebuild 703 BLAKE2B d274443d6265e1fd4634ae983f134c0361678fbb1fb50e33806dda4278bf82946cc21fb009eddf3abfc99059c74c656ed5a4e26301ffb5c4fa2326dc24a07b04 SHA512 091546ab67137fd34b273d612640c55c6843dc768663fd344d3379c9cf57eb46214b07cca4b0d35158c3eab33be6907f9023e32fda636f44e2ad8d0908898010 +EBUILD webstat-0.2.ebuild 703 BLAKE2B d274443d6265e1fd4634ae983f134c0361678fbb1fb50e33806dda4278bf82946cc21fb009eddf3abfc99059c74c656ed5a4e26301ffb5c4fa2326dc24a07b04 SHA512 091546ab67137fd34b273d612640c55c6843dc768663fd344d3379c9cf57eb46214b07cca4b0d35158c3eab33be6907f9023e32fda636f44e2ad8d0908898010 diff --git a/www-misc/webstat/webstat-0.2.ebuild b/www-misc/webstat/webstat-0.2.ebuild new file mode 100644 index 0000000..5ac8f3f --- /dev/null +++ b/www-misc/webstat/webstat-0.2.ebuild @@ -0,0 +1,34 @@ +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" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND=" + >=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 +} |