blob: f7573b08aca205d3e823ccdd74c3110f97fc7a2b (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/dissy/dissy-9.ebuild,v 1.1 2010/03/13 20:37:40 hwoarang Exp $
EAPI="2"
inherit distutils
DESCRIPTION="A graphical frontend to the objdump disassembler"
HOMEPAGE="http://code.google.com/p/dissy/"
SRC_URI="http://dissy.googlecode.com/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=""
RDEPEND="sys-devel/binutils
dev-python/pygtk
dev-python/pygobject"
src_prepare() {
sed -i -e "/('share\/doc\//"d setup.py || die "sed failed"
distutils_src_prepare
}
|