mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
Done via: ``` git grep -l virtual/zlib$ | xargs sed -i -e 's@virtual/zlib$@&:=@' ``` Signed-off-by: Michał Górny <mgorny@gentoo.org>
55 lines
1.1 KiB
Bash
55 lines
1.1 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit autotools
|
|
|
|
DESCRIPTION="A filesystem that contains a single file backed by Amazon S3"
|
|
HOMEPAGE="https://github.com/archiecobbs/s3backer"
|
|
SRC_URI="https://github.com/archiecobbs/s3backer/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="nbd"
|
|
|
|
RDEPEND="
|
|
dev-libs/expat
|
|
dev-libs/openssl:0=
|
|
net-misc/curl
|
|
sys-fs/fuse:0
|
|
virtual/zlib:=
|
|
nbd? ( sys-block/nbd sys-block/nbdkit )
|
|
"
|
|
DEPEND="${RDEPEND}
|
|
elibc_musl? ( sys-libs/queue-standalone )
|
|
"
|
|
BDEPEND="
|
|
virtual/pkgconfig
|
|
"
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
# s3backer builds support for nbdkit if it finds nbdkit during build, no config is needed.
|
|
# yet it will still build support for nbd if USE="-nbd" but nbdkit is installed
|
|
|
|
sed -e "/docdir=/s:packages/\$(PACKAGE):${PF}:" \
|
|
-e "/doc_DATA=/d" \
|
|
-i Makefile.am || die
|
|
|
|
eautoreconf
|
|
}
|
|
|
|
src_compile() {
|
|
emake CFLAGS="${CFLAGS}"
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
|
|
# skip /run/s3backer-nbd if present
|
|
rm -rf "${ED}/run"
|
|
}
|