diff options
author | Panagiotis Christopoulos <pchrist@gentoo.org> | 2008-11-17 00:07:31 +0000 |
---|---|---|
committer | Panagiotis Christopoulos <pchrist@gentoo.org> | 2008-11-17 00:07:31 +0000 |
commit | fa5e106cc92d5668ef5a075ff26b803ec3e9f092 (patch) | |
tree | d74aa14c785399b60c06ca728d2cea18476eecd6 /dev-scheme/plt-scheme/plt-scheme-4.1.2.ebuild | |
parent | Improve init scripts by completing dependency information, and by adding the ... (diff) | |
download | gentoo-2-fa5e106cc92d5668ef5a075ff26b803ec3e9f092.tar.gz gentoo-2-fa5e106cc92d5668ef5a075ff26b803ec3e9f092.tar.bz2 gentoo-2-fa5e106cc92d5668ef5a075ff26b803ec3e9f092.zip |
Rename dev-scheme/drscheme to dev-scheme/plt-scheme. Requested in bug 246666, by Dimitris Vyzovitis <vyzo at media.mit.edu>
(Portage version: 2.2_rc12/cvs/Linux 2.6.26-gentoo i686, RepoMan options: --force)
Diffstat (limited to 'dev-scheme/plt-scheme/plt-scheme-4.1.2.ebuild')
-rw-r--r-- | dev-scheme/plt-scheme/plt-scheme-4.1.2.ebuild | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/dev-scheme/plt-scheme/plt-scheme-4.1.2.ebuild b/dev-scheme/plt-scheme/plt-scheme-4.1.2.ebuild new file mode 100644 index 000000000000..02d9101c0b53 --- /dev/null +++ b/dev-scheme/plt-scheme/plt-scheme-4.1.2.ebuild @@ -0,0 +1,94 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-scheme/plt-scheme/plt-scheme-4.1.2.ebuild,v 1.1 2008/11/17 00:07:29 pchrist Exp $ + +inherit eutils latex-package + +SRC_URI="http://download.plt-scheme.org/bundles/${PV}/plt/plt-${PV}-src-unix.tgz + http://pre.plt-scheme.org/installers/plt-${PV}-src-unix.tgz" +#"mirror://gentoo/plt-${PV%%_p*}-src-unix.tgz" + +DESCRIPTION="DrScheme programming environment. Includes mzscheme." +HOMEPAGE="http://www.plt-scheme.org/software/drscheme/" +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="backtrace cairo cgc llvm opengl profile X" + +RDEPEND="X? ( x11-libs/libICE + x11-libs/libSM + x11-libs/libXaw + >=x11-libs/libXft-2.1.12 + x11-libs/libXrender + media-libs/freetype + media-libs/fontconfig + cairo? ( x11-libs/cairo ) + media-libs/jpeg + opengl? ( virtual/opengl ) + media-libs/libpng )" + +DEPEND="${RDEPEND} !dev-tex/slatex" + +S="${WORKDIR}/plt-${PV%%_p*}" + +pkg_setup() { + if use cairo && use X; then + if ! built_with_use x11-libs/cairo X; then + eerror "Cairo must be built with X use flag" + die "Cairo must be built with X use flag" + fi + fi +} + +src_unpack() { + unpack ${A} + cd "${S}" + + sed "s,docdir=\"\${datadir}/plt/doc,docdir=\"\${datadir}/doc/${PF}," -i src/configure + + epatch "${FILESDIR}/${PN}-4.1.2-as_needed.patch" +} + +src_compile() { + cd src + +# according to vapier, we should use the bundled libtool +# such that we don't preclude cross-compile. Thus don't use +# --enable-lt=/usr/bin/libtool + econf $(use_enable X mred) \ + --enable-shared \ + --disable-perl \ + $(use_enable backtrace) \ + $(use_enable cairo) \ + $(use_enable llvm) \ + $(use_enable opengl gl) \ + $(use_enable profile gprof) \ + --enable-xft \ + --enable-xrender + + if use cgc; then + emake both || die "emake both failed" + else + emake || die "emake failed" + fi +} + +src_install() { + # deal with slatex + insinto /usr/share/texmf/tex/latex/slatex/ + doins collects/slatex/slatex.sty + + cd src +# export MZSCHEME_DYNEXT_LINKER_FLAGS=$(raw-ldflags) + + if use cgc; then + emake DESTDIR="${D}" install-both || die "emake install-both failed" + else + emake DESTDIR="${D}" install || die "emake install failed" + fi + + if use X; then + newicon ../collects/icons/PLT-206.png drscheme.png + make_desktop_entry drscheme "DrScheme" drscheme "Development" + fi +} |