linamh/app-admin/reprepro/reprepro-5.3.0-r1.ebuild

42 lines
988 B
Bash

# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=8
inherit autotools db-use
SRC_URI="mirror://debian/pool/main/r/${PN}/${PN}_${PV}.orig.tar.gz
https://alioth.debian.org/frs/download.php/file/4109/${PN}_${PV}.orig.tar.gz"
DESCRIPTION="Debian repository creator and maintainer application"
HOMEPAGE="http://packages.debian.org/reprepro"
DEPEND="app-arch/bzip2
app-arch/gzip
app-arch/libarchive
app-crypt/gpgme
dev-libs/libgpg-error
>=sys-libs/db-4.3"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="bzip2"
LICENSE="GPL-2"
SLOT="0"
src_prepare() {
eapply "${FILESDIR}"/${PN}-4.1.2-gpgme-header-check-1.patch
# epatch "${FILESDIR}"/${PN}-3.8.1-db-4_5-1.patch
default
eautoreconf
}
src_configure() {
local myconf="--with-libarchive=yes"
use bzip2 && myconf="${myconf} --with-libbz2=yes" || myconf="${myconf} --with-libbz2=no"
econf ${myconf} || die "econf failed"
}
src_install() {
emake DESTDIR="${D}" install
}