55 lines
1.1 KiB
Bash
55 lines
1.1 KiB
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-libs/btparser/btparser-0.16.ebuild,v 1.3 2012/03/15 18:09:33 phajdan.jr Exp $
|
|
|
|
EAPI="4"
|
|
|
|
PYTHON_DEPEND="2:2.6"
|
|
|
|
inherit python
|
|
|
|
DESCRIPTION="Parser and analyzer for backtraces produced by gdb"
|
|
HOMEPAGE="https://fedorahosted.org/btparser/"
|
|
SRC_URI="https://fedorahosted.org/released/${PN}/${P}.tar.xz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86"
|
|
IUSE="static-libs"
|
|
|
|
RDEPEND=""
|
|
DEPEND="${RDEPEND}
|
|
app-arch/xz-utils"
|
|
|
|
pkg_setup() {
|
|
python_set_active_version 2
|
|
python_pkg_setup
|
|
}
|
|
|
|
src_prepare() {
|
|
python_clean_py-compile_files
|
|
}
|
|
|
|
src_configure() {
|
|
# Configure checks for python.pc; our python-2.7 installs python-2.7.pc,
|
|
# while python-2.6 does not install any pkgconfig file.
|
|
export PYTHON_CFLAGS=$(python-config --includes)
|
|
export PYTHON_LIBS=$(python-config --libs)
|
|
|
|
econf \
|
|
$(use_enable static-libs static) \
|
|
--disable-maintainer-mode
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
find "${D}" -name '*.la' -exec rm -f {} +
|
|
}
|
|
|
|
pkg_postinst() {
|
|
python_mod_optimize btparser
|
|
}
|
|
|
|
pkg_postrm() {
|
|
python_mod_cleanup btparser
|
|
}
|