blob: f2d9dce708c075aa0683e4bcd2166553518792e1 (
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
86
87
88
89
90
91
92
93
94
95
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xchm/xchm-1.7.1.ebuild,v 1.3 2006/04/15 13:06:09 nelchael Exp $
inherit wxwidgets
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="unicode"
DEPEND=">=app-doc/chmlib-0.31
>=x11-libs/wxGTK-2.6.0"
src_unpack() {
unpack ${A}
# Fix "time stamp 2006-04-22 16:14:39 is 609667 s in the future"
# bug #130059:
# SHOULD BE REMOVED AFTER 2006/04/22!
cd "${S}"
touch -r Makefile.in \
src/chmframe.h \
art/Makefile.in \
art/Makefile.am \
po/zh_TW.gmo \
po/sk.gmo \
po/ru.gmo \
po/ro.gmo \
po/pt.gmo \
po/pl.gmo \
po/lv.gmo \
po/it.gmo \
po/hu.gmo \
po/zh_CN.gmo \
po/fr.gmo \
po/es.gmo \
po/cs.gmo \
po/de.gmo \
po/bg.gmo
}
src_compile() {
local myconf
export WX_GTK_VER="2.6"
if use unicode; then
need-wxwidgets unicode
else
need-wxwidgets gtk2
fi
myconf="${myconf} --with-wx-config=${WX_CONFIG}"
econf ${myconf} || die "econf failed"
emake || die "emake failed"
}
src_install() {
einstall || die
dodoc AUTHORS README
# fixes dekstop 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/chm.xpm
dodir /usr/share/icons/hicolor/32x32/mimetypes/
install -m 644 ${S}/art/xchmdoc-32.xpm \
${D}/usr/share/icons/hicolor/32x32/mimetypes/chm.xpm
dodir /usr/share/icons/hicolor/48x48/mimetypes/
install -m 644 ${S}/art/xchmdoc-48.xpm \
${D}/usr/share/icons/hicolor/48x48/mimetypes/chm.xpm
dodir /usr/share/icons/hicolor/128x128/mimetypes/
install -m 644 ${S}/art/xchmdoc-128.xpm \
${D}/usr/share/icons/hicolor/128x128/mimetypes/chm.xpm
make_desktop_entry xchm XCHM xchm
}
|