summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2005-08-24 04:31:25 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2005-08-24 04:31:25 +0000
commit493f7058031ce01869a4034dc0066b4eda41eb24 (patch)
tree27958ec9ce1017bca92e7965a9db0c7632a1f7a4 /games-mud/mmucl
parentinherit eutils for epatch (diff)
downloadgentoo-2-493f7058031ce01869a4034dc0066b4eda41eb24.tar.gz
gentoo-2-493f7058031ce01869a4034dc0066b4eda41eb24.tar.bz2
gentoo-2-493f7058031ce01869a4034dc0066b4eda41eb24.zip
old
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'games-mud/mmucl')
-rw-r--r--games-mud/mmucl/files/digest-mmucl-1.5.21
-rw-r--r--games-mud/mmucl/mmucl-1.5.2.ebuild56
2 files changed, 0 insertions, 57 deletions
diff --git a/games-mud/mmucl/files/digest-mmucl-1.5.2 b/games-mud/mmucl/files/digest-mmucl-1.5.2
deleted file mode 100644
index 465a9e6550b8..000000000000
--- a/games-mud/mmucl/files/digest-mmucl-1.5.2
+++ /dev/null
@@ -1 +0,0 @@
-MD5 d38ad0b1a51325dada8ac6b1b15113e2 mmucl-1.5.2.tar.gz 144697
diff --git a/games-mud/mmucl/mmucl-1.5.2.ebuild b/games-mud/mmucl/mmucl-1.5.2.ebuild
deleted file mode 100644
index bd0804044583..000000000000
--- a/games-mud/mmucl/mmucl-1.5.2.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-mud/mmucl/mmucl-1.5.2.ebuild,v 1.5 2005/06/15 18:55:11 wolf31o2 Exp $
-
-inherit games
-
-DESCRIPTION="Marks MUd CLient - A mud client written completely in tcl/tk"
-HOMEPAGE="http://mmucl.sourceforge.net/"
-SRC_URI="mirror://sourceforge/mmucl/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86 ~ppc"
-IUSE="readline"
-
-DEPEND=">=dev-lang/tk-8.4
- readline? ( dev-tcltk/tclreadline )"
-
-src_unpack() {
- unpack ${A}
-
- sed -i \
- -e "/^BASE_DIR/ s:=.*:=/usr:" \
- -e "/^BIN_DIR/ s:=.*:=${GAMES_BINDIR}:" \
- -e "/^LIB_DIR/ s:=.*:=${GAMES_LIBDIR}/${PN}:" \
- -e "" "${S}/Makefile" \
- || die "sed Makefile failed"
-}
-
-src_install () {
- local LIBDIR="${GAMES_LIBDIR}/${PN}"
-
- dogamesbin mmucl2 || die "dogamesbin failed"
- insinto ${LIBDIR}/lib
- doins lib/*.tcl || die "doins failed (lib)"
- insinto ${LIBDIR}/images
- doins images/*.gif || die "doins failed (images)"
- insinto ${LIBDIR}/interface
- doins interface/*.tcl || die "doins failed (interface)"
- insinto ${LIBDIR}/script
- doins script/*.{tcl,rc} || die "doins failed (script)"
- insinto ${LIBDIR}/script/contrib
- doins script/contrib/* || die "doins failed (contrib)"
- insinto ${LIBDIR}/test
- doins test/*.test || die "doins failed (test)"
- doinfo mmucl.info || die "doinfo failed"
- dodoc CHANGES TODO README || die "dodoc failed"
- dohtml mmucl.html || die "dohtml failed"
- prepgamesdirs
-}
-
-pkg_postinst() {
- games_pkg_postinst
- echo
- einfo "The executable for this is mmucl2."
-}