blob: 9e186fb625c06992ef52d99481f92b3123c99afe (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-18.59.ebuild,v 1.4 2004/07/30 18:55:15 usata Exp $
inherit eutils
DESCRIPTION="The extensible self-documenting text editor"
HOMEPAGE="http://www.gnu.org/software/emacs/"
SRC_URI="ftp://ftp.gnu.org/old-gnu/emacs/${P}.tar.gz
ftp://ftp.splode.com/pub/users/friedman/patches/${P}-linux22x-elf-glibc2.diff.gz
mirror://gentoo/${P}-gentoo.tar.gz"
LICENSE="GPL-1"
SLOT="1"
KEYWORDS="~x86"
IUSE="X"
DEPEND="sys-libs/ncurses
X? ( virtual/x11 )"
PROVIDE="virtual/editor"
MY_BASEDIR="/usr/share/emacs/${PV}"
MY_LOCKDIR="/var/lib/emacs/lock"
# Do not use the sandbox, or the dumped Emacs will be twice as large
SANDBOX_DISABLED="1"
src_unpack() {
unpack ${A}
epatch ${P}-linux22x-elf-glibc2.diff
epatch ${P}-unexelf.patch
epatch ${P}-gentoo.patch
epatch ${P}-gcc-gentoo.patch
}
src_compile() {
# autoconf? What's autoconf? We are living in 1992. ;-)
local arch
case ${ARCH} in
x86) arch=intel386 ;;
*) die "Architecture ${ARCH} not supported" ;;
esac
local cmd="s/\"s-.*\.h\"/\"s-linux.h\"/;s/\"m-.*\.h\"/\"m-${arch}.h\"/"
use X && cmd="${cmd};s/.*\(#define HAVE_X_WINDOWS\).*/\1/"
sed -e "${cmd}" src/config.h-dist >src/config.h
cat <<-END >src/paths.h
#define PATH_LOADSEARCH "${MY_BASEDIR}/lisp"
#define PATH_EXEC "${MY_BASEDIR}/etc"
#define PATH_LOCK "${MY_LOCKDIR}/"
#define PATH_SUPERLOCK "${MY_LOCKDIR}/!!!SuperLock!!!"
END
emake -j1 || die
}
src_install() {
dodir ${MY_BASEDIR}
dodir /usr/share/man/man1
make install LIBDIR=${D}${MY_BASEDIR} BINDIR=${D}/usr/bin \
MANDIR=${D}/usr/share/man/man1 || die
chmod -R go-w ${D}${MY_BASEDIR}
rmdir ${D}${MY_BASEDIR}/lock
dodir ${MY_LOCKDIR%/*}
diropts -m0777
dodir ${MY_LOCKDIR}
keepdir ${MY_LOCKDIR}
for file in ${D}/usr/bin/*; do mv ${file} ${file}-${PV}; done
mv ${D}/usr/share/man/man1/emacs.1 ${D}/usr/share/man/man1/emacs-${PV}.1
}
|