blob: eb4daa2942dc3b7bd1225d84d2daeb7886159d29 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kdvi/kdvi-3.5.8.ebuild,v 1.6 2008/01/30 17:23:56 ranger Exp $
KMNAME=kdegraphics
MAXKDEVER=$PV
KM_DEPRANGE="$PV $MAXKDEVER"
inherit kde-meta eutils elisp-common
DESCRIPTION="KDE DVI viewer"
KEYWORDS="alpha amd64 ia64 ~ppc ppc64 sparc x86 ~x86-fbsd"
IUSE="emacs tetex"
DEPEND="$(deprange $PV $MAXKDEVER kde-base/kviewshell)
>=media-libs/freetype-2.3
emacs? ( virtual/emacs )"
RDEPEND="${DEPEND}
tetex? ( virtual/tetex )"
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
}
|