summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2004-04-04 21:38:35 +0000
committerMike Frysinger <vapier@gentoo.org>2004-04-04 21:38:35 +0000
commit1b774f34d75947686ac9dee52d47b2039cfed735 (patch)
tree9f6c8b01de2100be442fba32a5d7bf511ba420b0 /app-editors/nano
parentNew portage with security fixes. -r1 patched for sandbox. (Manifest recommit) (diff)
downloadgentoo-2-1b774f34d75947686ac9dee52d47b2039cfed735.tar.gz
gentoo-2-1b774f34d75947686ac9dee52d47b2039cfed735.tar.bz2
gentoo-2-1b774f34d75947686ac9dee52d47b2039cfed735.zip
old
Diffstat (limited to 'app-editors/nano')
-rw-r--r--app-editors/nano/files/digest-nano-1.0.9-r21
-rw-r--r--app-editors/nano/nano-1.0.9-r2.ebuild37
2 files changed, 0 insertions, 38 deletions
diff --git a/app-editors/nano/files/digest-nano-1.0.9-r2 b/app-editors/nano/files/digest-nano-1.0.9-r2
deleted file mode 100644
index 542d3210e0b2..000000000000
--- a/app-editors/nano/files/digest-nano-1.0.9-r2
+++ /dev/null
@@ -1 +0,0 @@
-MD5 499162ef77d0c5b9c2c171bae6052327 nano-1.0.9.tar.gz 451822
diff --git a/app-editors/nano/nano-1.0.9-r2.ebuild b/app-editors/nano/nano-1.0.9-r2.ebuild
deleted file mode 100644
index b55d643f3827..000000000000
--- a/app-editors/nano/nano-1.0.9-r2.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2004 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/nano-1.0.9-r2.ebuild,v 1.8 2004/03/17 01:46:14 vapier Exp $
-
-DESCRIPTION="clone of Pico with more functions in a smaller size"
-HOMEPAGE="http://www.nano-editor.org/"
-SRC_URI="http://www.nano-editor.org/dist/v1.0/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86 ppc sparc alpha mips hppa"
-IUSE="nls build"
-
-DEPEND=">=sys-libs/ncurses-5.2
- nls? ( sys-devel/gettext )"
-
-PROVIDE="virtual/editor"
-
-src_compile() {
- local myconf="--bindir=/bin --enable-extra"
- use nls || myconf="${myconf} --disable-nls"
- use build && myconf="${myconf} --disable-wrapping-as-root"
-
- econf ${myconf} || die
- emake || die
-}
-
-src_install() {
- make DESTDIR=${D} install || die
-
- use build \
- && rm -rf ${D}/usr/share \
- || dodoc COPYING ChangeLog README
-
- dodir /usr/bin
- dosym /bin/nano /usr/bin/nano
-}