blob: 43d86ab3800c8ccaec925c27c3b67ddad21d1e0e (
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-21.3.50.ebuild,v 1.17 2003/11/21 00:47:29 matsuu Exp $
ECVS_SERVER="subversions.gnu.org:/cvsroot/emacs"
ECVS_MODULE="emacs"
ECVS_USER="anoncvs"
ECVS_CVS_OPTIONS="-dP"
inherit elisp-common cvs
IUSE="X nls gtk gtk2 Xaw3d gnome spell"
S=${WORKDIR}/${ECVS_MODULE}
DESCRIPTION="Emacs is the extensible, customizable, self-documenting real-time display editor."
SRC_URI=""
HOMEPAGE="http://www.gnu.org/software/emacs"
# Never use the sandbox, it causes Emacs to segfault on startup
SANDBOX_DISABLED="1"
RESTRICT="$RESTRICT nostrip"
DEPEND=">=sys-libs/ncurses-5.3
sys-libs/gdbm
dev-util/cvs
dev-python/pexpect
spell? ( || ( app-text/ispell
app-text/aspell ) )
X? ( virtual/x11
>=media-libs/libungif-4.1.0.1b
>=media-libs/jpeg-6b
>=media-libs/tiff-3.5.7
>=media-libs/libpng-1.2.5 )
gtk? ( =x11-libs/gtk+-2* )
gtk2? ( =x11-libs/gtk+-2* )
Xaw3d? ( x11-libs/Xaw3d )
gnome? ( gnome-base/gnome-desktop )
nls? ( >=sys-devel/gettext-0.11.5 )"
PROVIDE="virtual/emacs virtual/editor"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc sparc ~amd64"
DFILE=emacs.desktop
src_compile() {
local myconf
use nls || myconf="${myconf} --disable-nls"
if use X ;
then
myconf="${myconf}
--with-x
--with-xpm
--with-jpeg
--with-tiff
--with-gif
--with-png"
if use gtk || use gtk2
then
myconf="${myconf} --with-x-toolkit=gtk
--with-gtk
--with-toolkit-scroll-bars"
elif use Xaw3d
then
myconf="${myconf} --with-x-toolkit=athena
--with-toolkit-scroll-bars"
fi
else
myconf="${myconf} --without-x"
fi
unset CFLAGS CPPFLAGS
./configure --host=${CHOST} \
--prefix=/usr \
--libexecdir=/usr/lib \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--enable-debug \
${myconf} || die
make bootstrap || die
}
src_install () {
make prefix=${D}/usr \
libexecdir=${D}/usr/lib \
mandir=${D}/usr/share/man \
infodir=${D}/usr/share/info \
install || die
# fix info documentation
find ${D}/usr/share/info -type f -exec mv {} {}.info \;
if has_version 'app-text/aspell' ; then
# defaults to aspell if installed
elisp-site-file-install ${FILESDIR}/40aspell-gentoo.el
fi
dodoc BUGS ChangeLog README
if use gnome
then
insinto /usr/share/gnome/apps/Application
doins ${FILESDIR}/${DFILE}
fi
}
pkg_postinst() {
elisp-site-regen
}
pkg_postrm() {
elisp-site-regen
}
|