blob: a27c8da314d879efb59fa0b15a67856637411ff1 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/socnetv/socnetv-0.81.ebuild,v 1.1 2010/10/04 21:29:25 chiiph Exp $
EAPI="2"
inherit qt4-r2
MY_PN="SocNetV"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Qt Social Network Visualizer"
HOMEPAGE="http://socnetv.sourceforge.net/"
SRC_URI="mirror://sourceforge/socnetv/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
DEPEND="x11-libs/qt-gui:4
x11-libs/qt-webkit:4"
RDEPEND="${DEPEND}"
src_prepare() {
qt4-r2_src_prepare
sed -i "/QMAKE_CXXFLAGS/ c\QMAKE_CXXFLAGS += ${CXXFLAGS}" \
${PN}.pro.in || die "Fix cxxflags failed"
sed -i "s/@make/@+make/" Makefile.in \
|| die "Fix parallalel issue failed"
}
src_install() {
dobin socnetv || die "dobin failed"
doicon src/images/socnetv.png || die "doicon failed"
make_desktop_entry ${PN} SocNetV ${PN} 'Science' \
|| die "make_desktop_entry failed"
insinto /usr/share/${PN}/examples || die "insinto failed"
doins nets/* || die "doins failed"
dodoc AUTHORS ChangeLog README TODO || die "dodoc failed"
if use doc; then
dohtml -r "${S}"/manual/* || die "dohtml failed"
fi
doman "${S}/man/${PN}.1.gz" || die "doman failed"
}
|