forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
qt4-fsarchiver-0.6.19.7.ebuild
66 lines (54 loc) · 1.33 KB
/
qt4-fsarchiver-0.6.19.7.ebuild
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
57
58
59
60
61
62
63
64
65
66
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit qmake-utils versionator
MY_P="${PN}-$(replace_version_separator 3 '-')"
MIN_PV="$(get_version_component_range 1-3)"
DESCRIPTION="Qt4 frontend for fsarchiver"
HOMEPAGE="http://qt4-fsarchiver.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/source/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
CDEPEND="app-arch/bzip2
app-arch/xz-utils
dev-libs/libgcrypt:=
dev-libs/lzo
dev-qt/qtcore:4
dev-qt/qtgui:4
sys-apps/util-linux
sys-fs/e2fsprogs
sys-libs/zlib"
RDEPEND="${CDEPEND}
>=app-backup/fsarchiver-${MIN_PV}[lzma,lzo]"
DEPEND="${CDEPEND}"
S="${WORKDIR}/${PN}"
src_prepare() {
# fix .desktop file
sed -i \
-e '/Encoding/d' starter/"${PN}".desktop \
|| die "sed on qt4-fsarchiver.desktop failed"
# fix icon installation location
sed -i \
-e "/icon.path/s:app-install/icons:${PN}:" "${PN}.pro" \
|| die "sed on ${PN}.pro failed"
}
src_compile() {
eqmake4
}
src_install() {
emake INSTALL_ROOT="${D}" install
einstalldocs
}
pkg_postinst() {
elog "optional dependencies:"
elog " sys-fs/btrfs-progs"
elog " sys-fs/jfsutils"
elog " sys-fs/ntfs3g[ntfsprogs]"
elog " sys-fs/reiser4progs"
elog " sys-fs/reiserfsprogs"
elog " sys-fs/sshfs"
elog " sys-fs/xfsprogs"
}