summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin von Gagern (MvG) <Martin.vGagern@gmx.net>2009-12-09 08:26:49 +0000
committerMartin von Gagern (MvG) <Martin.vGagern@gmx.net>2009-12-09 08:26:49 +0000
commit3bbbaf3482b2edef5ea4a83b2db45d8f789a9399 (patch)
tree61085a09f290eb684183ddb6680a260c03340a92 /dev-lang/tkgofer/tkgofer-2.1.ebuild
parentmedia-video/huludesktop: Version bump (diff)
downloadsunrise-3bbbaf3482b2edef5ea4a83b2db45d8f789a9399.tar.gz
sunrise-3bbbaf3482b2edef5ea4a83b2db45d8f789a9399.tar.bz2
sunrise-3bbbaf3482b2edef5ea4a83b2db45d8f789a9399.zip
dev-lang/tkgofer: Added ~amd64 keyword, script now in /usr/bin
svn path=/sunrise/; revision=9682
Diffstat (limited to 'dev-lang/tkgofer/tkgofer-2.1.ebuild')
-rw-r--r--dev-lang/tkgofer/tkgofer-2.1.ebuild49
1 files changed, 0 insertions, 49 deletions
diff --git a/dev-lang/tkgofer/tkgofer-2.1.ebuild b/dev-lang/tkgofer/tkgofer-2.1.ebuild
deleted file mode 100644
index 869289549..000000000
--- a/dev-lang/tkgofer/tkgofer-2.1.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-inherit eutils
-
-DESCRIPTION="Gofer interpreter including Tcl/Tk interface"
-HOMEPAGE="http://www.informatik.uni-ulm.de/pm/projekte/TkGofer/"
-SRC_URI="http://www.informatik.uni-ulm.de/pm/projekte/TkGofer/tkg${PV}.tar.gz"
-
-LICENSE="as-is" # see ${S}/Sources/goferite.h for exact wording
-SLOT="0"
-KEYWORDS="~x86"
-IUSE=""
-
-DEPEND=">=dev-lang/tcl-7.6
- >=dev-lang/tk-4.2
- sys-libs/readline"
-RDEPEND=${DEPEND}
-
-S=${WORKDIR}/${PN}${PV}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}/2.1-include-string.patch" \
- "${FILESDIR}/2.1-gentoo-config.patch"
-}
-
-src_compile() {
- rm Sources/prelude.h Sources/Makefile # ensure regeneration
- ./tkgofer.install || die "tkgofer.install failed"
- sed -i -e"s:${S}:/usr:" \
- -e"s:\\(PreludeDir=\"\\).*\":\\1/usr/lib/${PN}/Preludes\":" \
- -e"s:\\(BinDir=\"\\).*\":\\1/usr/lib/${PN}/Bin\":" \
- -e"s:\\(TclDir=\"\\).*\":\\1/usr/lib/${PN}/Tcl\":" \
- -e"s:\\(HelpDir=\"\\).*\":\\1/usr/share/doc/${PF}\":" \
- Bin/tkgofer || die "sed for tkgofer failed"
-}
-
-src_install() {
- insinto /usr/lib/${PN}/Preludes || die
- doins Preludes/* || die
- insinto /usr/lib/${PN}/Tcl || die
- doins Tcl/* || die
- exeinto /usr/lib/${PN}/Bin || die
- doexe Bin/{site.specific,tkgofer.exe,tkgofer} || die
- dodoc readme Doc/* || die
-}