diff options
author | Tavis Ormandy <taviso@gentoo.org> | 2003-06-18 07:48:14 +0000 |
---|---|---|
committer | Tavis Ormandy <taviso@gentoo.org> | 2003-06-18 07:48:14 +0000 |
commit | bfaed4de0e5e54f67108bcbffa517f9528d40fc0 (patch) | |
tree | b25a2047eeaebbf801e86c6ab3355381a28d25f1 /app-editors/teco | |
parent | added a doc use flag and marked stable. (diff) | |
download | historical-bfaed4de0e5e54f67108bcbffa517f9528d40fc0.tar.gz historical-bfaed4de0e5e54f67108bcbffa517f9528d40fc0.tar.bz2 historical-bfaed4de0e5e54f67108bcbffa517f9528d40fc0.zip |
added a doc use flag and marked stable.
Diffstat (limited to 'app-editors/teco')
-rw-r--r-- | app-editors/teco/Manifest | 5 | ||||
-rw-r--r-- | app-editors/teco/files/digest-teco-1.00 | 1 | ||||
-rw-r--r-- | app-editors/teco/files/digest-teco-1.00-r1 | 5 | ||||
-rw-r--r-- | app-editors/teco/teco-1.00-r1.ebuild | 45 |
4 files changed, 53 insertions, 3 deletions
diff --git a/app-editors/teco/Manifest b/app-editors/teco/Manifest index 31678dca571c..9bb6a5b982fd 100644 --- a/app-editors/teco/Manifest +++ b/app-editors/teco/Manifest @@ -1,3 +1,4 @@ -MD5 403a03b49eb62791044e621dfd961e00 teco-1.00-r1.ebuild 1483 -MD5 5ced6851136c4ad213713d76d7b5833e ChangeLog 558 +MD5 52afd87c55171929fe898e77116c0aa9 teco-1.00.ebuild 1002 +MD5 434111b6b30fc498d50cbc90c3df0c06 teco-1.00-r1.ebuild 1486 +MD5 156f2ef77f32d03267f0b5eb818d9055 ChangeLog 583 MD5 8b57d774afe4775a6ffa845c0e1712d0 files/digest-teco-1.00-r1 271 diff --git a/app-editors/teco/files/digest-teco-1.00 b/app-editors/teco/files/digest-teco-1.00 deleted file mode 100644 index 6f1863be9608..000000000000 --- a/app-editors/teco/files/digest-teco-1.00 +++ /dev/null @@ -1 +0,0 @@ -MD5 b996a43a133f0d636ef3331da2374e6e teco.tar.gz 6130 diff --git a/app-editors/teco/files/digest-teco-1.00-r1 b/app-editors/teco/files/digest-teco-1.00-r1 new file mode 100644 index 000000000000..c3f03d2dd4ba --- /dev/null +++ b/app-editors/teco/files/digest-teco-1.00-r1 @@ -0,0 +1,5 @@ +MD5 b996a43a133f0d636ef3331da2374e6e teco.tar.gz 61305 +MD5 a62525bfb67118350690e093c4ed58cf tecolore.txt 15533 +MD5 ad5f4f568bbe6fcb951070dc997cc020 tech.txt 3904 +MD5 d5efa795e45b895c6e1fd861cc8f1aae teco.doc 498722 +MD5 46ec1e080831bed18f18c9d2c336aa3e tecoprog.doc 43989 diff --git a/app-editors/teco/teco-1.00-r1.ebuild b/app-editors/teco/teco-1.00-r1.ebuild new file mode 100644 index 000000000000..cdb739bcbf46 --- /dev/null +++ b/app-editors/teco/teco-1.00-r1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/teco/teco-1.00-r1.ebuild,v 1.1 2003/06/18 07:48:06 taviso Exp $ + +DESCRIPTION="Classic TECO editor, Predecessor to EMACS." +HOMEPAGE="http://www.ibiblio.org/pub/linux/apps/editors/tty/" +SRC_URI="http://www.ibiblio.org/pub/linux/apps/editors/tty/teco.tar.gz + doc? ( http://www.ibiblio.org/pub/academic/computer-science/history/pdp-11/teco/doc/tecolore.txt ) + doc? ( http://www.ibiblio.org/pub/academic/computer-science/history/pdp-11/teco/doc/tech.txt ) + doc? ( http://www.ibiblio.org/pub/academic/computer-science/history/pdp-11/teco/doc/teco.doc ) + doc? ( http://www.ibiblio.org/pub/academic/computer-science/history/pdp-11/teco/doc/tecoprog.doc )" +LICENSE="freedist" +SLOT="0" +KEYWORDS="alpha x86" +IUSE="doc" +DEPEND="virtual/glibc + sys-libs/libtermcap-compat + >=sys-apps/sed-4" +RDEPEND="virtual/glibc + sys-libs/libtermcap-compat" +S=${WORKDIR} + +src_unpack() { + unpack teco.tar.gz || die "sorry, couldnt unpack teco." +} + +src_compile() { + sed -i 's/CFLAGS = -O//' Makefile + emake || die "compilation failed" + echo + size te + echo +} + +src_install() { + dobin te + dodoc sample.tecorc sample.tecorc2 READ.ME MANIFEST \ + ${DISTDIR}/{tecolore.txt,tech.txt,teco.doc,tecoprog.doc} + doman te.1 +} + +pkg_postinst() { + einfo "The TECO binary is called te." + einfo "Sample configurations and documentation is available in /usr/share/doc/" +} |