blob: fe7bf76b19c35550fb529fac07fd258fbc3b1190 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pylibpcap/pylibpcap-0.4.ebuild,v 1.11 2005/11/28 11:38:22 marienz Exp $
inherit distutils eutils
DESCRIPTION="Python interface to libpcap"
HOMEPAGE="http://sourceforge.net/projects/${PN}/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="x86 ~amd64"
IUSE=""
DEPEND="virtual/python
virtual/libpcap"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PV}-swig.patch
}
src_install() {
distutils_src_install
insinto /usr/share/doc/${PF}/examples
doins examples/*
}
|