blob: 06bda7af34c3d1de1701dcb1509e4f6670c37de2 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/linuxdcpp/linuxdcpp-9999.ebuild,v 1.7 2007/09/11 11:29:42 armin76 Exp $
inherit cvs eutils
DESCRIPTION="Direct connect client, looks and works like famous DC++"
HOMEPAGE="http://linuxdcpp.berlios.de"
SRC_URI=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="debug"
ECVS_SERVER="cvs.linuxdcpp.berlios.de:/cvsroot/linuxdcpp"
ECVS_MODULE="linuxdcpp"
ECVS_AUTH="pserver"
ECVS_USER="anonymous"
S="${WORKDIR}/${PN}"
RDEPEND=">=gnome-base/libglade-2.4
>=x11-libs/gtk+-2.6
app-arch/bzip2
dev-libs/openssl"
DEPEND="${RDEPEND}
media-libs/fontconfig
>=dev-util/scons-0.96
dev-util/pkgconfig"
src_compile() {
local myconf=""
use debug && myconf="${myconf} debug=1"
scons ${myconf} ${MAKEOPTS} CXXFLAGS="${CXXFLAGS}" PREFIX=/usr || die "scons failed"
}
src_install() {
insinto /usr/share/${PN}
doins -r ${PN} pixmaps glade
dodoc Readme.txt Changelog.txt Credits.txt
dosym /usr/share/${PN}/${PN} /usr/bin/${PN}
fperms +x /usr/share/${PN}/${PN}
doicon pixmaps/${PN}.png
make_desktop_entry ${PN} "${PN}" ${PN}.png
}
pkg_postinst() {
elog
elog "After adding first directory to shares you might need to restart linuxdcpp."
elog
}
|