mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-23 16:49:10 -07:00
app-crypt/onak: drop 0.5.0-r1
Signed-off-by: Petr Vaněk <arkamar@gentoo.org>
This commit is contained in:
@@ -1,2 +1 @@
|
||||
DIST onak-0.5.0.tar.xz 240764 BLAKE2B a42d9a97137ae7fb403d8a20f2a9a5b5060d216fca97447630c8e8659440d5baa0c6e0fbe983feec8b4061263decc1183868055fe53c0797d49dd1f2e4c141f8 SHA512 db38793acc82089089ac0b9fb6db9989b6bb8e94c35c14112d028d12f7bb7553b7409121378346625528c4916506d007bf40963f4a346483f51a23b670680a7d
|
||||
DIST onak-0.6.3.tar.xz 717040 BLAKE2B bae6c5b6022b42f59d6cf978d5e79df7b8bb71692bc11cfd162563f8afacb07c81505e070a7f6154b409db78449cd3b2182a1232e6ff3dacb4588cd977482f44 SHA512 3952b2ca8dfc32236dc6fc92a35d0d8223ae03be343fef4fcda49875d9d2b6ceb042c1c2cd63c035c467ee2773a103a36c7407c201f23de176e2121559ea1bff
|
||||
|
||||
@@ -1,54 +0,0 @@
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit autotools
|
||||
|
||||
DESCRIPTION="onak is an OpenPGP keyserver"
|
||||
HOMEPAGE="http://www.earth.li/projectpurple/progs/onak.html"
|
||||
SRC_URI="http://www.earth.li/projectpurple/files/${P}.tar.xz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="berkdb postgres"
|
||||
|
||||
DEPEND="berkdb? ( >=sys-libs/db-4 )
|
||||
postgres? ( dev-db/postgresql[server] )"
|
||||
|
||||
DOCS=(
|
||||
apache2 README LICENSE onak.sql
|
||||
)
|
||||
|
||||
# it tries to use all backends?
|
||||
RESTRICT="test"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/${PN}-0.5.0-musl-strtouq-fix.patch
|
||||
)
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local backend="fs"
|
||||
use berkdb && backend="db4"
|
||||
use postgres && backend="pg"
|
||||
if use berkdb && use postgres; then
|
||||
ewarn "berkdb and postgres requested, postgres was preferred"
|
||||
fi
|
||||
econf --localstatedir=/var --enable-backend="${backend}"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
insinto /etc
|
||||
doins onak.ini
|
||||
keepdir /var/lib/onak
|
||||
insinto /usr/lib/cgi-bin/pks
|
||||
dodir /usr/lib/cgi-bin/pks
|
||||
doins add gpgwww lookup
|
||||
}
|
||||
Reference in New Issue
Block a user