blob: bf3eeafe3edcffc4d159e14071eefb9e37db212b (
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
29
30
31
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-electronics/gresistor/gresistor-0.0.1.ebuild,v 1.1 2010/04/17 16:37:53 hwoarang Exp $
EAPI=2
PYTHON_DEPEND="2:2.5"
inherit distutils eutils
DESCRIPTION="Translate a resistor color codes into a readable value"
HOMEPAGE="http://www.roroid.ro/index.php?option=com_content&view=article&id=1:gresistor&catid=1:software-projects&Itemid=2"
SRC_URI="http://www.roroid.ro/progs/${PN}/${P}.tar.gz"
LICENSE="|| ( GPL-3 LGPL-3 )"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="x11-libs/gtk+:2
gnome-base/libglade"
RDEPEND="${DEPEND}"
DOCS=(
"README"
)
src_install() {
distutils_src_install
newicon pixmaps/icon.png ${PN}.png
domenu ${PN}.desktop
}
|