35 lines
955 B
Bash
35 lines
955 B
Bash
|
# Copyright 1999-2008 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Header: $
|
||
|
|
||
|
inherit eutils autotools
|
||
|
|
||
|
SRC_URI="mirror://debian/pool/main/r/${PN}/${PN}_${PV}.orig.tar.gz
|
||
|
http://alioth.debian.org/frs/download.php/2484/${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 >=sys-libs/db-4.3"
|
||
|
KEYWORDS="~x86 ~amd64"
|
||
|
IUSE="bzip2"
|
||
|
LICENSE="GPL-2"
|
||
|
SLOT="0"
|
||
|
|
||
|
src_unpack() {
|
||
|
unpack ${A}
|
||
|
epatch ${FILESDIR}/${P}-gpgme-header-check-1.patch
|
||
|
epatch ${FILESDIR}/${P}-db-4_5-1.patch
|
||
|
cd ${S}
|
||
|
eautoreconf
|
||
|
}
|
||
|
|
||
|
src_compile() {
|
||
|
local myconf="--with-libarchive=yes"
|
||
|
use bzip2 && myconf="${myconf} --with-libbz2=yes" || myconf="${myconf} --with-libbz2=no"
|
||
|
econf ${myconf} || die "econf failed"
|
||
|
emake || die "emake failed"
|
||
|
}
|
||
|
|
||
|
src_install() {
|
||
|
emake DESTDIR=${D} install
|
||
|
}
|