diff options
-rw-r--r-- | app-editors/nano/files/digest-nano-1.2.0 | 1 | ||||
-rw-r--r-- | app-editors/nano/files/digest-nano-1.2.1 | 1 | ||||
-rw-r--r-- | app-editors/nano/nano-1.2.0.ebuild | 47 | ||||
-rw-r--r-- | app-editors/nano/nano-1.2.1.ebuild | 53 |
4 files changed, 0 insertions, 102 deletions
diff --git a/app-editors/nano/files/digest-nano-1.2.0 b/app-editors/nano/files/digest-nano-1.2.0 deleted file mode 100644 index 22645dbbf9a4..000000000000 --- a/app-editors/nano/files/digest-nano-1.2.0 +++ /dev/null @@ -1 +0,0 @@ -MD5 48a045da0ac8851df23f00122d3646b8 nano-1.2.0.tar.gz 896742 diff --git a/app-editors/nano/files/digest-nano-1.2.1 b/app-editors/nano/files/digest-nano-1.2.1 deleted file mode 100644 index 50c41afc11bb..000000000000 --- a/app-editors/nano/files/digest-nano-1.2.1 +++ /dev/null @@ -1 +0,0 @@ -MD5 188d24b9cc4c1041ac58d6b6f7941eb4 nano-1.2.1.tar.gz 911163 diff --git a/app-editors/nano/nano-1.2.0.ebuild b/app-editors/nano/nano-1.2.0.ebuild deleted file mode 100644 index 639cbf8032bb..000000000000 --- a/app-editors/nano/nano-1.2.0.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/nano-1.2.0.ebuild,v 1.8 2003/11/14 08:21:22 vapier Exp $ - -MY_P="${PN}-${PV/_}" -DESCRIPTION="clone of Pico with more functions in a smaller size" -SRC_URI="http://www.nano-editor.org/dist/v1.2/${MY_P}.tar.gz" -HOMEPAGE="http://www.nano-editor.org/" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86 ppc sparc alpha mips hppa arm" -IUSE="nls build slang spell" - -S=${WORKDIR}/${MY_P} - -DEPEND=">=sys-libs/ncurses-5.2 - nls? ( sys-devel/gettext )" - -PROVIDE="virtual/editor" - -src_compile() { - use build && myconf="${myconf} --disable-wrapping-as-root" - - econf \ - --bindir=/bin \ - --enable-color \ - --enable-multibuffer \ - --enable-nanorc \ - `use_enable spell` \ - `use_enable nls` \ - ${myconf} \ - || die "configure failed" - emake || die -} - -src_install() { - make DESTDIR=${D} install || die - - use build \ - && rm -rf ${D}/usr/share \ - || dodoc ChangeLog README nanorc.sample AUTHORS BUGS NEWS TODO \ - && dohtml *.html - - dodir /usr/bin - dosym /bin/nano /usr/bin/nano -} diff --git a/app-editors/nano/nano-1.2.1.ebuild b/app-editors/nano/nano-1.2.1.ebuild deleted file mode 100644 index 8844c298fc6d..000000000000 --- a/app-editors/nano/nano-1.2.1.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/nano-1.2.1.ebuild,v 1.11 2003/11/14 08:21:22 vapier Exp $ - -MY_P=${PN}-${PV/_} -DESCRIPTION="GNU GPL'd Pico clone with more functionality" -SRC_URI="http://www.nano-editor.org/dist/v1.2/${MY_P}.tar.gz" -HOMEPAGE="http://www.nano-editor.org/" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86 ppc sparc alpha mips hppa arm" -IUSE="nls build spell justify" - -DEPEND=">=sys-libs/ncurses-5.2 - nls? ( sys-devel/gettext )" -PROVIDE="virtual/editor" - -S=${WORKDIR}/${MY_P} - -src_unpack() { - unpack ${A} - cd ${S} - epatch ${FILESDIR}/nanohupterm.patch -} - -src_compile() { - use build && myconf="${myconf} --disable-wrapping-as-root" - - econf \ - --bindir=/bin \ - --enable-color \ - --enable-multibuffer \ - --enable-nanorc \ - `use_enable justify` \ - `use_enable spell` \ - `use_enable nls` \ - ${myconf} \ - || die "configure failed" - emake || die -} - -src_install() { - make DESTDIR=${D} install || die - - use build \ - && rm -rf ${D}/usr/share \ - || dodoc ChangeLog README nanorc.sample AUTHORS BUGS NEWS TODO \ - && dohtml *.html - - dodir /usr/bin - dosym /bin/nano /usr/bin/nano -} |