blob: fe1a5982fc6a0e536a80e4bd8a841582cc93322c (
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: /var/cvsroot/gentoo-x86/media-gfx/comix/comix-2.7.ebuild,v 1.3 2006/03/25 16:07:29 vanquirius Exp $
inherit toolchain-funcs
DESCRIPTION="A GTK image viewer specifically designed to handle comic books."
HOMEPAGE="http://comix.sourceforge.net"
SRC_URI="mirror://sourceforge/comix/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 x86"
IUSE="rar"
RDEPEND=">=dev-python/pygtk-2.6
rar? ( app-arch/unrar )
>=dev-python/imaging-1.1.4"
src_install() {
dodir /usr
python install.py install --installdir "${D}"usr 1>/dev/null
dodoc ChangeLog README
}
|