blob: 3f15d3384e57b2471e2908bb462235eb02295fe0 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kdvi/kdvi-3.5.10.ebuild,v 1.7 2009/07/12 13:09:23 armin76 Exp $
EAPI="1"
KMNAME=kdegraphics
inherit kde-meta eutils elisp-common
DESCRIPTION="KDE DVI viewer"
KEYWORDS="~alpha amd64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86"
IUSE="emacs kpathsea"
DEPEND=">=kde-base/kviewshell-${PV}:${SLOT}
>=media-libs/freetype-2.3
emacs? ( virtual/emacs )"
RDEPEND="${DEPEND}
kpathsea? ( virtual/tex-base )"
KMCOMPILEONLY="kviewshell/"
SITEFILE=50${PN}-gentoo.el
src_compile() {
kde-meta_src_compile
if use emacs; then
cd "${S}/doc/kdvi"
elisp-compile kdvi-search.el
fi
}
src_install() {
kde-meta_src_install
if use emacs; then
elisp-install ${PN} doc/kdvi/kdvi-search.el*
elisp-site-file-install "${FILESDIR}/${SITEFILE}"
fi
}
pkg_postinst() {
kde_pkg_postinst
use emacs && elisp-site-regen
}
pkg_postrm() {
kde_pkg_postrm
use emacs && elisp-site-regen
}
|