diff options
author | Daniel Robbins <drobbins@gentoo.org> | 2000-08-14 15:45:57 +0000 |
---|---|---|
committer | Daniel Robbins <drobbins@gentoo.org> | 2000-08-14 15:45:57 +0000 |
commit | b48df557a7c79dea2ceaf0f437b6102c4550fcd9 (patch) | |
tree | 8209488dac48bbed38afbfc6ef5af1bb6bca09d7 /sys-apps/sed | |
parent | *** empty log message *** (diff) | |
download | historical-b48df557a7c79dea2ceaf0f437b6102c4550fcd9.tar.gz historical-b48df557a7c79dea2ceaf0f437b6102c4550fcd9.tar.bz2 historical-b48df557a7c79dea2ceaf0f437b6102c4550fcd9.zip |
added new version of sed (3.02a) supposedly alpha but known stable
Diffstat (limited to 'sys-apps/sed')
-rw-r--r-- | sys-apps/sed/sed-3.02a.ebuild | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/sys-apps/sed/sed-3.02a.ebuild b/sys-apps/sed/sed-3.02a.ebuild new file mode 100644 index 000000000000..d6ab11590e29 --- /dev/null +++ b/sys-apps/sed/sed-3.02a.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Daniel Robbins <drobbins@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/sys-apps/sed/sed-3.02a.ebuild,v 1.1 2000/08/14 15:45:57 drobbins Exp $ + +A=${P}.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="Super-useful stream editor" +CATEGORY="sys-apps" +SRC_URI="ftp://alpha.gnu.org/pub/gnu/sed/${A}" + +src_compile() { + ./configure --prefix=/usr --host=${CHOST} + make +} + +src_install() { + into /usr + doinfo doc/sed.info + doman doc/sed.1 + dobin sed/sed + dodoc COPYING NEWS README* THANKS TODO AUTHORS BUGS ANNOUNCE +} + |