app-admin/reprepro: bump

(Portage version: 2.2.0_alpha10-r1/svn/Linux x86_64)

git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/linamh@2794 6952d904-891a-0410-993b-d76249ca496b
This commit is contained in:
geos_one
2010-12-31 15:26:14 +00:00
parent 473f90d12c
commit 88991654ff
4 changed files with 53 additions and 3 deletions

View File

@@ -0,0 +1,39 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
inherit eutils autotools db-use
SRC_URI="mirror://debian/pool/main/r/${PN}/${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() {
epatch "${FILESDIR}"/${PN}-4.1.2-gpgme-header-check-1.patch
# epatch "${FILESDIR}"/${PN}-3.8.1-db-4_5-1.patch
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
}