aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/emacs/emacs_cvs.bb
blob: 8ffc22f8bcd3c44df37c3a4831fb4b5e8daef5a3 (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
DESCRIPTION = "Emacs"
HOMEPAGE = "http://www.gnu.org/software/emacs/"
LICENSE = "GPLv2"
SECTION = "editor"
# and it needs to run some generated binaries..
DEPENDS += "qemu-native"
#NOTE: I have found that this only works with qemu-0.8.0. If I use 0.8.1 or 0.8.2
# the build gets hung up on compiling certain .el files

PV = "22.0.50+cvs${SRCDATE}" 
PE = "1"
PR = "r9"

DEFAULT_PREFERENCE = "-1"

SRC_URI = "cvs://anoncvs:anonymous@cvs.savannah.gnu.org/sources/emacs;module=emacs \
           file://use-qemu.patch"
S = "${WORKDIR}/emacs"

inherit autotools

PACKAGES =+ "${PN}-el"

FILES_${PN}-el = "${datadir}/emacs/*/*/*.el.gz \
                  ${datadir}/emacs/*/*/*/*.el.gz"

FILES_${PN} += "${datadir}/emacs"

QEMU = "qemu-${TARGET_ARCH} -L ${STAGING_DIR_TARGET}"
LDFLAGS += "-L${TOOLCHAIN_PATH}/${TARGET_SYS}/lib"

EXTRA_OECONF = "--without-sound --without-x"

do_bootstrap() {
    cp "${TOOLCHAIN_PATH}/${TARGET_SYS}/lib/libgcc_s.so.1" "${S}"
    export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:${S}"
    export QEMU="${QEMU}"

    sed -i 's:/usr/lib:${STAGING_LIBDIR}:g' ${S}/src/s/gnu-linux.h
    find "${S}" -name Makefile | xargs sed -i 's:/usr/lib:${STAGING_LIBDIR}:g'

    cd "${S}"
    make bootstrap
}

addtask bootstrap before do_compile after do_configure

do_compile_prepend() {
    cp "${TOOLCHAIN_PATH}/${TARGET_SYS}/lib/libgcc_s.so.1" "${S}"
    export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:${S}"
    export QEMU="${QEMU}"
}