initial python-ptrace exheres
This commit is contained in:
parent
6ddc11efd9
commit
38cf94c67a
1 changed files with 44 additions and 0 deletions
|
@ -0,0 +1,44 @@
|
||||||
|
# Copyright 2009 Daniel Mierswa <impulze@impulze.org>
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
require distutils
|
||||||
|
|
||||||
|
SUMMARY="A debugger using python."
|
||||||
|
HOMEPAGE="http://bitbucket.org/haypo/python-ptrace/"
|
||||||
|
DOWNLOADS="${HOMEPAGE}/get/${PNV}.tar.bz2"
|
||||||
|
|
||||||
|
LICENCES="GPL-2"
|
||||||
|
SLOT="0"
|
||||||
|
PLATFORMS="~amd64"
|
||||||
|
|
||||||
|
REMOTE_IDS="freshmeat:python-ptrace pypi:python-ptrace"
|
||||||
|
|
||||||
|
UPSTREAM_DOCUMENTATION="${HOMEPAGE}/wiki/Home [[ description = [ wiki ] ]]"
|
||||||
|
|
||||||
|
WORK="${WORKBASE}/python-ptrace"
|
||||||
|
|
||||||
|
do_phase() {
|
||||||
|
edo ln -sf setup.py{.orig,}
|
||||||
|
"$@"
|
||||||
|
edo ln -sf setup.py{.cptrace,}
|
||||||
|
"$@"
|
||||||
|
}
|
||||||
|
|
||||||
|
src_prepare() {
|
||||||
|
edo mv setup.py{,.orig}
|
||||||
|
edo mv setup_cptrace.py setup.py.cptrace
|
||||||
|
|
||||||
|
do_phase distutils_src_prepare
|
||||||
|
}
|
||||||
|
|
||||||
|
src_compile() {
|
||||||
|
do_phase distutils_src_compile
|
||||||
|
}
|
||||||
|
|
||||||
|
src_install() {
|
||||||
|
do_phase distutils_src_install
|
||||||
|
|
||||||
|
insinto /usr/share/pyinotify/examples
|
||||||
|
doins -r examples/*
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue