diff options
author | Christian Faulhammer <opfer@gentoo.org> | 2007-10-24 14:53:09 +0000 |
---|---|---|
committer | Christian Faulhammer <opfer@gentoo.org> | 2007-10-24 14:53:09 +0000 |
commit | e4a259e2069c6b87e6141a5bc4053f524429fb6b (patch) | |
tree | ed40d2becd0cd3957ddf9c06e8c041eeb302c7dd /app-office/magicpoint | |
parent | stable x86, bug 196887 (diff) | |
download | gentoo-2-e4a259e2069c6b87e6141a5bc4053f524429fb6b.tar.gz gentoo-2-e4a259e2069c6b87e6141a5bc4053f524429fb6b.tar.bz2 gentoo-2-e4a259e2069c6b87e6141a5bc4053f524429fb6b.zip |
correct path for X11 libs, fix Emacs supported, reported by maekke
(Portage version: 2.1.3.9)
Diffstat (limited to 'app-office/magicpoint')
-rw-r--r-- | app-office/magicpoint/ChangeLog | 6 | ||||
-rw-r--r-- | app-office/magicpoint/magicpoint-1.12a-r1.ebuild | 8 |
2 files changed, 10 insertions, 4 deletions
diff --git a/app-office/magicpoint/ChangeLog b/app-office/magicpoint/ChangeLog index 1a7c65fc543b..ac3fc6fc1eab 100644 --- a/app-office/magicpoint/ChangeLog +++ b/app-office/magicpoint/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-office/magicpoint # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/magicpoint/ChangeLog,v 1.29 2007/09/25 11:50:19 opfer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/magicpoint/ChangeLog,v 1.30 2007/10/24 14:53:09 opfer Exp $ + + 24 Oct 2007; Christian Faulhammer <opfer@gentoo.org> + magicpoint-1.12a-r1.ebuild: + correct path for X11 libs, fix Emacs supported, reported by maekke *magicpoint-1.12a-r1 (25 Sep 2007) diff --git a/app-office/magicpoint/magicpoint-1.12a-r1.ebuild b/app-office/magicpoint/magicpoint-1.12a-r1.ebuild index b9ac014a9aca..8e8505966da1 100644 --- a/app-office/magicpoint/magicpoint-1.12a-r1.ebuild +++ b/app-office/magicpoint/magicpoint-1.12a-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/magicpoint/magicpoint-1.12a-r1.ebuild,v 1.2 2007/09/28 07:20:59 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/magicpoint/magicpoint-1.12a-r1.ebuild,v 1.3 2007/10/24 14:53:09 opfer Exp $ inherit autotools elisp-common eutils fixheadtails @@ -56,8 +56,8 @@ src_compile() { $(use_with m17n-lib) \ --disable-vflib \ --disable-freetype \ - --x-libraries=/usr/X11R6/lib \ - --x-includes=/usr/X11R6/include || die "econf failed" + --x-libraries=/usr/lib/X11 \ + --x-includes=/usr/include/X11 || die "econf failed" xmkmf || die "xmkmf failed" # no parallel build possibly, anywhere @@ -87,8 +87,10 @@ src_install() { dobin contrib/{mgp2html.pl,mgp2latex.pl} if use emacs ; then + cd contrib/ elisp-install ${PN} *.el *.elc || die "elisp-install failed" elisp-site-file-install "${FILESDIR}/${SITEFILE}" + cd - fi use doc && dodoc FAQ README* RELNOTES SYNTAX TODO* USAGE* |