diff options
author | 2004-04-21 22:12:01 +0000 | |
---|---|---|
committer | 2004-04-21 22:12:01 +0000 | |
commit | 578b5f3175a2f9d14f0408d538c61ad5842a8cc4 (patch) | |
tree | 2d67d03117f9df7229b475c6e6d6feddba7a330c /app-accessibility/emacspeak/emacspeak-18.ebuild | |
parent | fix typo (Manifest recommit) (diff) | |
download | gentoo-2-578b5f3175a2f9d14f0408d538c61ad5842a8cc4.tar.gz gentoo-2-578b5f3175a2f9d14f0408d538c61ad5842a8cc4.tar.bz2 gentoo-2-578b5f3175a2f9d14f0408d538c61ad5842a8cc4.zip |
initial commit; #45058
Diffstat (limited to 'app-accessibility/emacspeak/emacspeak-18.ebuild')
-rw-r--r-- | app-accessibility/emacspeak/emacspeak-18.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/app-accessibility/emacspeak/emacspeak-18.ebuild b/app-accessibility/emacspeak/emacspeak-18.ebuild new file mode 100644 index 000000000000..c09f982004a3 --- /dev/null +++ b/app-accessibility/emacspeak/emacspeak-18.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/emacspeak/emacspeak-18.ebuild,v 1.1 2004/04/21 22:12:01 squinky86 Exp $ + +DESCRIPTION="the emacspeak audio desktop" +HOMEPAGE="http://emacspeak.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" +RESTRICT="nomirror" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +RDEPEND="virtual/emacs + >=dev-tcltk/tclx-8.3" +DEPEND="${RDEPEND} + >=sys-apps/sed-4.0.7" + +S=${WORKDIR}/${P}.0 + +src_compile() { + make config SRC=`pwd` || die + make emacspeak || die +} + +src_install() { + make \ + prefix=${D}/usr \ + install || die + sed -i -e "s@/.*image/@@" ${D}/usr/bin/emacspeak + dodoc README etc/NEWS* etc/FAQ etc/COPYRIGHT + dohtml -r install-guide user-guide +} |