diff options
Diffstat (limited to 'dev-scheme/plt-scheme/plt-scheme-4.2.1.ebuild')
-rw-r--r-- | dev-scheme/plt-scheme/plt-scheme-4.2.1.ebuild | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/dev-scheme/plt-scheme/plt-scheme-4.2.1.ebuild b/dev-scheme/plt-scheme/plt-scheme-4.2.1.ebuild new file mode 100644 index 000000000000..cca81d08d556 --- /dev/null +++ b/dev-scheme/plt-scheme/plt-scheme-4.2.1.ebuild @@ -0,0 +1,91 @@ +# Copyright 1999-2009 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.2.1.ebuild,v 1.1 2009/08/02 15:16:54 hkbst 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" +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 + sys-libs/zlib )" + +DEPEND="${RDEPEND} !dev-tex/slatex" + +S="${WORKDIR}/plt-${PV%%_p*}/src" + +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}" + + #remove bundled libraries + rm -rf wxcommon/{jpeg,libpng,zlib} + + sed "s,docdir=\"\${datadir}/plt/doc,docdir=\"\${datadir}/doc/${PF}," -i configure || die +} + +src_compile() { +# 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 + + 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 +} |