blob: 5f3fa067e7578bd130d7055c8a83a0d5261f5bff (
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
32
33
34
35
36
37
38
39
40
41
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/qtnx/qtnx-0.9.ebuild,v 1.5 2009/10/06 17:25:09 ayoy Exp $
EAPI="1"
inherit qt4
MY_P="freenx-client-${PV}"
DESCRIPTION="A Qt-based NX client using nxcl"
HOMEPAGE="http://developer.berlios.de/projects/freenx/"
SRC_URI="mirror://berlios/freenx/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND="net-misc/nxcl
x11-libs/qt-core:4
x11-libs/qt-gui:4"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}/${PN}"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i -e "s#id\.key#/usr/share/${PN}/id.key#" qtnxwindow.cpp || die "sed failed"
}
src_compile() {
eqmake4
emake || die "Make failed"
}
src_install() {
dobin ${PN}
dodoc README
insinto /usr/share/${PN}
doins id.key
}
|