diff options
author | Denis 'Gnutoo' Carikli <GNUtoo@no-log.org> | 2009-12-28 14:20:25 +0100 |
---|---|---|
committer | Denis 'Gnutoo' Carikli <GNUtoo@no-log.org> | 2009-12-28 14:58:51 +0100 |
commit | acbf54300f0754250362e75497f62092faf7d499 (patch) | |
tree | 6868ec4fd7d7dd9e12dbf3512009b84463cd0be7 /recipes/emacs/emacs-x11_23.1.bb | |
parent | 969376ab44396ff23f8f628b9d5f4c8040d1cecf (diff) |
emacs: added version 23.1 and fixed compilation on x86
The main advantage in this version is that the handling of fonts is a
lot better:
In emacs-x11 the used fonts are not tiny anymore and can
easily be chosen
Note that we still use qemu for bytecode compilation on x86,
that is for several reasons:
*The most important one is that it prevents using the host's
libraries
*It simplifies the recipe(no separate case when the architecture
is the same )
*It should work if someone cross-compiles for x86 on
his mips,arm,powerpc,sparc computer
Warning: emacs_23.1 has not been tested but emacs-x11_23.1 has
so putting defaullt preference to -2 in emacs_23.1
Diffstat (limited to 'recipes/emacs/emacs-x11_23.1.bb')
-rw-r--r-- | recipes/emacs/emacs-x11_23.1.bb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/recipes/emacs/emacs-x11_23.1.bb b/recipes/emacs/emacs-x11_23.1.bb new file mode 100644 index 0000000000..65665f22a6 --- /dev/null +++ b/recipes/emacs/emacs-x11_23.1.bb @@ -0,0 +1,20 @@ +require emacs.inc + +# full X (non-diet) is needed for X support +DEPENDS += "gtk+ libungif" + +EXTRA_OECONF = "--without-sound --with-x-toolkit=gtk" + +DEFAULT_PREFERENCE = "-1" + +RREPLACES = "emacs" + +FILESPATH = "${FILE_DIRNAME}/emacs-${PV}:${FILE_DIRNAME}/files" +SRC_URI = "${GNU_MIRROR}/emacs/emacs-${PV}.tar.gz;name=tarball \ + file://emacs23.1-use-qemu.patch;patch=1 \ + file://nostdlib-unwind.patch;patch=1" +SRC_URI[tarball.md5sum] = "a620d4452769d04ad8864d662f34f8dd" +SRC_URI[tarball.sha256sum] = "a94cd46301f000d2d1dcd3fd7ef08ad952846d01ca5d4168b4ec3e38e857da47" + + +S = "${WORKDIR}/emacs-${PV}" |