blob: cef0bb2c0ab54a0e12940c427c1dd7c0e8f06694 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/kchmviewer/kchmviewer-4.0_beta1.ebuild,v 1.1 2007/09/28 17:10:51 pva Exp $
inherit qt4 fdo-mime
MY_P="${PN}-${PV/_beta/b}"
DESCRIPTION="KchmViewer is a feature rich chm file viewer, based on Qt."
HOMEPAGE="http://www.kchmviewer.net/"
SRC_URI="mirror://sourceforge/kchmviewer/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="$(qt4_min_version 4.2)
app-doc/chmlib"
S=${WORKDIR}/${MY_P}
src_compile() {
eqmake4
emake || die "make failed"
}
src_install() {
dobin bin/kchmviewer || die "dobin kchmviewer failed"
insinto /usr/share/applications
doins lib/kio-msits/kchmviewer.desktop
dodoc ChangeLog README
}
pkg_postinst() {
fdo-mime_desktop_database_update
}
|