You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-util/xdelta/xdelta-3.0.4.ebuild

55 lines
1.2 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/xdelta/xdelta-3.0.4.ebuild,v 1.7 2012/11/20 20:58:20 ago Exp $
EAPI=4
inherit autotools python
MY_P=${PN}${PV%.*.*}-${PV}
DESCRIPTION="a binary diff and differential compression tools. VCDIFF (RFC 3284) delta compression."
HOMEPAGE="http://xdelta.org/"
SRC_URI="http://${PN}.googlecode.com/files/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="3"
KEYWORDS="~alpha amd64 hppa ~ia64 ppc ppc64 ~sparc x86"
IUSE="examples test"
RDEPEND="app-arch/xz-utils"
DEPEND="${RDEPEND}
test? ( || ( dev-lang/python:2.7 dev-lang/python:2.6 ) )"
S=${WORKDIR}/${MY_P}
pkg_setup() {
if use test; then
python_set_active_version 2
python_pkg_setup
fi
}
src_prepare() {
>py-compile
# huh
sed -i -e '/python/s:2.6:2:' testing/xdelta3-regtest.py || die
sed -i -e '/python/s:2.7:2:' testing/xdelta3-test.py || die
# only build tests when required
sed -i -e '/xdelta3regtest/s:noinst_P:check_P:' Makefile.am || die
eautoreconf
}
src_test() {
default
./xdelta3regtest || die
}
src_install() {
emake DESTDIR="${D}" install
dodoc draft-korn-vcdiff.txt README
use examples && dodoc -r examples
}