blob: 9cbf1742da3940f5e234b22fe9d3137d60a148b6 (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xchm/xchm-1.13.ebuild,v 1.6 2007/07/30 02:31:07 dirtyepic Exp $
inherit wxwidgets flag-o-matic fdo-mime gnome2-utils
DESCRIPTION="Utility for viewing Microsoft .chm files."
HOMEPAGE="http://xchm.sf.net"
SRC_URI="mirror://sourceforge/xchm/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="nls unicode"
DEPEND=">=app-doc/chmlib-0.31
=x11-libs/wxGTK-2.6*"
# Tested to work against a local install of 2.8.3
src_compile() {
local myconf
export WX_GTK_VER="2.6"
if use unicode; then
check_wxuse unicode
need-wxwidgets unicode
else
need-wxwidgets gtk2
fi
append-flags -fno-strict-aliasing
myconf="${myconf} --with-wx-config=${WX_CONFIG}"
econf ${myconf} \
$(use_enable nls) \
|| die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS README ChangeLog
# fixes desktop and icon problems
rm ${D}/usr/share/pixmaps/xchm-*.xpm ${D}/usr/share/pixmaps/xchmdoc-*.xpm
dodir /usr/share/icons/hicolor/16x16/apps/
install -m 644 ${S}/art/xchm-16.xpm \
${D}/usr/share/icons/hicolor/16x16/apps/xchm.xpm
dodir /usr/share/icons/hicolor/32x32/apps/
install -m 644 ${S}/art/xchm-32.xpm \
${D}/usr/share/icons/hicolor/32x32/apps/xchm.xpm
dodir /usr/share/icons/hicolor/48x48/apps/
install -m 644 ${S}/art/xchm-48.xpm \
${D}/usr/share/icons/hicolor/48x48/apps/xchm.xpm
dodir /usr/share/icons/hicolor/128x128/apps/
install -m 644 ${S}/art/xchm-128.xpm \
${D}/usr/share/icons/hicolor/128x128/apps/xchm.xpm
dodir /usr/share/icons/hicolor/16x16/mimetypes/
install -m 644 ${S}/art/xchmdoc-16.xpm \
${D}/usr/share/icons/hicolor/16x16/mimetypes/application-x-chm.xpm
dodir /usr/share/icons/hicolor/32x32/mimetypes/
install -m 644 ${S}/art/xchmdoc-32.xpm \
${D}/usr/share/icons/hicolor/32x32/mimetypes/application-x-chm.xpm
dodir /usr/share/icons/hicolor/48x48/mimetypes/
install -m 644 ${S}/art/xchmdoc-48.xpm \
${D}/usr/share/icons/hicolor/48x48/mimetypes/application-x-chm.xpm
dodir /usr/share/icons/hicolor/128x128/mimetypes/
install -m 644 ${S}/art/xchmdoc-128.xpm \
${D}/usr/share/icons/hicolor/128x128/mimetypes/application-x-chm.xpm
insinto /usr/share/applications
newins ${FILESDIR}/${P}.desktop ${PN}.desktop
}
pkg_postinst() {
fdo-mime_desktop_database_update
gnome2_icon_cache_update
}
pkg_postrm() {
fdo-mime_desktop_database_update
gnome2_icon_cache_update
}
|