blob: 4d51d8239af05c20fc85bca1d7a802af48ef0dea (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/q7z/q7z-0.7.1-r1.ebuild,v 1.1 2009/06/01 22:41:17 hwoarang Exp $
EAPI="2"
MY_PN="Q7Z"
DESCRIPTION="A GUI frontend for p7zip"
HOMEPAGE="http://k7z.sourceforge.net/7Z/Q7Z/"
SRC_URI="mirror://sourceforge/k7z/${MY_PN}-${PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~sparc ~x86"
IUSE=""
DEPEND=">=dev-python/PyQt4-4.3[X]"
RDEPEND="app-arch/p7zip
app-arch/tar
>=dev-python/PyQt4-4.3"
S="${WORKDIR}/${MY_PN}/Build"
src_install() {
emake DESTDIR="${D}" install || die "install failed"
rm ../Doc/COPYING.txt ../Doc/LICENCE.txt # unneeded GPL copies
dodoc ../Doc/*
rm -rf "${D}"/usr/share/apps/Q7Z/Doc # which is now superfluous
}
|