blob: 44888d8ec51c399022f6ca589aed6dccc827cca9 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-ftp/qshare/qshare-1.3.ebuild,v 1.2 2010/06/26 22:19:52 angelos Exp $
EAPI="2"
LANGS="en es fr ru"
inherit qt4-r2
DESCRIPTION="FTP server with a service discovery feature."
HOMEPAGE="http://qt-apps.org/content/show.php/qShare?content=116612"
SRC_URI="http://qt-apps.org/CONTENT/content-files/116612-${P}-src.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 ~x86"
IUSE=""
RDEPEND="x11-libs/qt-gui:4"
DEPEND="${RDEPEND}"
S="${WORKDIR}/${PN}"
src_prepare() {
#fix translations
sed -i "s:i18n:usr\/share\/${PN}\/translations:" src/config.cpp \
|| die "failed to fix translations path"
qt4-r2_src_prepare
}
src_install() {
dobin ${PN} || die "dobin failed"
doicon icons/${PN}.png
make_desktop_entry /usr/bin/${PN} QShare ${PN} "Qt;Network;FileTransfer"
dohtml docs/* || die "dohtml failed"
for X in ${LINGUAS}; do
for Z in ${LANGS}; do
if [[ ${X} == ${Z} ]]; then
insinto /usr/share/${PN}/translations/
doins i18n/${PN}_${X}.qm || die "failed to install ${X} translation"
fi
done
done
}
|