blob: 63749f9a3b9adf4e22ee4c131fa419de3a634a9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit distutils
DESCRIPTION="A fast and simple GTK+ image viewer."
HOMEPAGE="http://mirageiv.berlios.de/"
SRC_URI="http://download.berlios.de/mirageiv/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=dev-python/pygtk-2.6"
src_install() {
distutils_src_install
rm -rf ${D}/usr/share/mirage
}
|