diff options
author | Luis Francisco Araujo <araujo@gentoo.org> | 2007-09-23 18:31:15 +0000 |
---|---|---|
committer | Luis Francisco Araujo <araujo@gentoo.org> | 2007-09-23 18:31:15 +0000 |
commit | 94e0d0e6533b68f980c42e4ce45c01c1d768dd63 (patch) | |
tree | 8254529c54646e0c6b3345ec05f057035dc30a32 /dev-lang/gnu-smalltalk/gnu-smalltalk-2.3.6.ebuild | |
parent | Keyworded ~amd64 as per bug 191477. (diff) | |
download | historical-94e0d0e6533b68f980c42e4ce45c01c1d768dd63.tar.gz historical-94e0d0e6533b68f980c42e4ce45c01c1d768dd63.tar.bz2 historical-94e0d0e6533b68f980c42e4ce45c01c1d768dd63.zip |
Adding new version.
Package-Manager: portage-2.1.3.9
Diffstat (limited to 'dev-lang/gnu-smalltalk/gnu-smalltalk-2.3.6.ebuild')
-rw-r--r-- | dev-lang/gnu-smalltalk/gnu-smalltalk-2.3.6.ebuild | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/dev-lang/gnu-smalltalk/gnu-smalltalk-2.3.6.ebuild b/dev-lang/gnu-smalltalk/gnu-smalltalk-2.3.6.ebuild new file mode 100644 index 000000000000..2b8dbabde27b --- /dev/null +++ b/dev-lang/gnu-smalltalk/gnu-smalltalk-2.3.6.ebuild @@ -0,0 +1,75 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/gnu-smalltalk/gnu-smalltalk-2.3.6.ebuild,v 1.1 2007/09/23 18:31:15 araujo Exp $ + +inherit multilib elisp-common flag-o-matic eutils toolchain-funcs + +DESCRIPTION="GNU Smalltalk" +HOMEPAGE="http://smalltalk.gnu.org" +SRC_URI="http://ftp.gnu.org/gnu/smalltalk/smalltalk-${PV}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~sparc ~x86" +IUSE="tk readline emacs gtk gmp" + +DEPEND="sys-libs/gdbm + sys-apps/debianutils + emacs? ( virtual/emacs ) + readline? ( sys-libs/readline ) + tk? ( dev-lang/tk ) + gtk? ( =x11-libs/gtk+-2* ) + gmp? ( dev-libs/gmp )" +RDEPEND="" + +S=${WORKDIR}/smalltalk-${PV} + +SITEFILE=50gnu-smalltalk-gentoo.el + +src_unpack() { + unpack ${A} + # stack patch + epatch ${FILESDIR}/gst-stack-${PV}.patch + sed -i "s:\$(DESTDIR)\$(bindir)/gst \$\$srcdir/Finish.st \-VisqS \-a \"\$(DESTDIR)\" \$(MODULES): :" ${S}/Makefile.am + sed -i "s:\$(DESTDIR)\$(bindir)/gst \$\$srcdir/Finish.st \-VisqS \-a \"\$(DESTDIR)\" \$(MODULES): :" ${S}/Makefile.in +} + +src_compile() { + replace-flags '-O3' '-O2' + ./configure --prefix=/usr \ + `use_with emacs emacs` \ + `use_with readline readline` \ + `use_with gmp gmp` \ + `use_with tk tcl /usr/lib` \ + `use_with tk tk /usr/lib` \ + `use_enable gtk gtk` \ + || die + emake || die "emake failed" + use emacs && elisp-compile *.el +} + +src_install() { + make prefix=${D}/usr mandir=${D}/usr/share/man infodir=${D}/usr/share/info \ + lispdir=${D}/usr/share/emacs/site-lisp/gnu-smalltalk \ + libdir=${D}/usr/lib install || die + rm -rf ${D}/usr/include/sigsegv.h \ + ${D}/usr/include/snprintfv \ + ${D}/usr/share/aclocal/snprintfv.m4 + dodoc AUTHORS COPYING* ChangeLog NEWS README THANKS TODO + rm -rf ${D}/var + if use emacs; then + elisp-install ${PN} *.el *.elc + elisp-site-file-install ${FILESDIR}/${SITEFILE} + fi + fperms 0444 /usr/share/smalltalk/packages.xml +} + +pkg_postinst() { + einfo "We generate a GNU SmallTalk Image with the right kernel image path." + cd /usr/share/smalltalk/ + /usr/bin/gst -iQ /dev/null + use emacs && elisp-site-regen +} + +pkg_postrm() { + use emacs && elisp-site-regen +} |