diff options
author | 2001-08-26 10:15:11 +0000 | |
---|---|---|
committer | 2001-08-26 10:15:11 +0000 | |
commit | f2257bbea0de3d88a066f03f6ab69ca86945e849 (patch) | |
tree | e9e8076e75f133bc37cc68fb5e9fb3a065ab6307 /app-editors/nano | |
parent | updates (diff) | |
download | gentoo-2-f2257bbea0de3d88a066f03f6ab69ca86945e849.tar.gz gentoo-2-f2257bbea0de3d88a066f03f6ab69ca86945e849.tar.bz2 gentoo-2-f2257bbea0de3d88a066f03f6ab69ca86945e849.zip |
added new release upd and removed old versions. this version also supports use build variable.
Diffstat (limited to 'app-editors/nano')
-rw-r--r-- | app-editors/nano/files/digest-nano-1.0.2 | 1 | ||||
-rw-r--r-- | app-editors/nano/files/digest-nano-1.0.3 | 1 | ||||
-rw-r--r-- | app-editors/nano/files/digest-nano-1.0.4 | 1 | ||||
-rw-r--r-- | app-editors/nano/nano-1.0.2.ebuild | 29 | ||||
-rw-r--r-- | app-editors/nano/nano-1.0.4.ebuild (renamed from app-editors/nano/nano-1.0.3.ebuild) | 12 |
5 files changed, 10 insertions, 34 deletions
diff --git a/app-editors/nano/files/digest-nano-1.0.2 b/app-editors/nano/files/digest-nano-1.0.2 deleted file mode 100644 index e7e35b02c4ee..000000000000 --- a/app-editors/nano/files/digest-nano-1.0.2 +++ /dev/null @@ -1 +0,0 @@ -MD5 5535dcaf7f412d6fe0b9f4505f3ff4e9 nano-1.0.2.tar.gz diff --git a/app-editors/nano/files/digest-nano-1.0.3 b/app-editors/nano/files/digest-nano-1.0.3 deleted file mode 100644 index 0936b44e535c..000000000000 --- a/app-editors/nano/files/digest-nano-1.0.3 +++ /dev/null @@ -1 +0,0 @@ -MD5 520a7d3330485cd747d0ebfd48a3fd57 nano-1.0.3.tar.gz diff --git a/app-editors/nano/files/digest-nano-1.0.4 b/app-editors/nano/files/digest-nano-1.0.4 new file mode 100644 index 000000000000..2af2e472a9c9 --- /dev/null +++ b/app-editors/nano/files/digest-nano-1.0.4 @@ -0,0 +1 @@ +MD5 e48f0c030f30ef279cb37c7e046a9b14 nano-1.0.4.tar.gz diff --git a/app-editors/nano/nano-1.0.2.ebuild b/app-editors/nano/nano-1.0.2.ebuild deleted file mode 100644 index 629780609c70..000000000000 --- a/app-editors/nano/nano-1.0.2.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Author Prakash Shetty (Crux) <ps@gnuos.org> -# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/nano-1.0.2.ebuild,v 1.3 2001/08/11 09:27:09 hallski Exp $ - -#Note: ${A} is now auto-generated from SRC_URI; you shouldn't set it manually -#A=${P}.tar.gz -S=${WORKDIR}/${P} -DESCRIPTION="A Clone of PICO with more Fuctions in a smaller Size" -#SRC_URI="http://www.nano-editor.org/dist/v1.0/${A}" -SRC_URI="http://www.nano-editor.org/dist/v1.0/${P}.tar.gz" -HOMEPAGE="http://www.nano-editor.org" - -DEPEND=">=sys-libs/glibc-2.1.3 - >=sys-libs/ncurses-5.2" - -src_compile() { - cd ${S} -# try ./configure --prefix=/usr --enable-extra -# FHS 2.2 compliance: - try ./configure --prefix=/usr --enable-extra --mandir=/usr/share/man --infodir=/usr/share/info - try make -} - -src_install () { - cd ${S} - try make DESTDIR=${D} install - dodoc COPYING ChangeLog README -} diff --git a/app-editors/nano/nano-1.0.3.ebuild b/app-editors/nano/nano-1.0.4.ebuild index 48541a869c25..c554a9d0ba6d 100644 --- a/app-editors/nano/nano-1.0.3.ebuild +++ b/app-editors/nano/nano-1.0.4.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Prakash Shetty (Crux) <ps@gnuos.org> -# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/nano-1.0.3.ebuild,v 1.3 2001/08/11 09:27:09 hallski Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/nano-1.0.4.ebuild,v 1.1 2001/08/26 10:15:11 pm Exp $ S=${WORKDIR}/${P} DESCRIPTION="A Clone of PICO with more Fuctions in a smaller Size" @@ -14,12 +14,18 @@ DEPEND=">=sys-libs/glibc-2.1.3 src_compile() { cd ${S} - try ./configure --prefix=/usr --enable-extra --mandir=/usr/share/man --infodir=/usr/share/info + try ./configure --prefix=/usr --enable-extra --mandir=/usr/share/man \ + --infodir=/usr/share/info try make } src_install () { cd ${S} try make DESTDIR=${D} install - dodoc COPYING ChangeLog README + if [ -z "`use bootcd`" ] && [ -z "`use build`" ] + then + dodoc COPYING ChangeLog README + else + rm -rf ${D}/usr/share + fi } |