diff options
author | Daniel Robbins <drobbins@gentoo.org> | 2001-07-01 04:43:17 +0000 |
---|---|---|
committer | Daniel Robbins <drobbins@gentoo.org> | 2001-07-01 04:43:17 +0000 |
commit | 80db872a9192b66d809d0b5c87779bf46f58137c (patch) | |
tree | 7f5bbff020d0327c2b77d73457ada3daaf9dcde8 /app-text | |
parent | missing digest (diff) | |
download | gentoo-2-80db872a9192b66d809d0b5c87779bf46f58137c.tar.gz gentoo-2-80db872a9192b66d809d0b5c87779bf46f58137c.tar.bz2 gentoo-2-80db872a9192b66d809d0b5c87779bf46f58137c.zip |
fixes for crux
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/nano/nano-1.0.2.ebuild | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/app-text/nano/nano-1.0.2.ebuild b/app-text/nano/nano-1.0.2.ebuild index 529b1acae551..c44afe2b2eb1 100644 --- a/app-text/nano/nano-1.0.2.ebuild +++ b/app-text/nano/nano-1.0.2.ebuild @@ -2,25 +2,26 @@ # Distributed under the terms of the GNU General Public License, v2 or later # Author Prakash Shetty (Crux) <ps@gnuos.org> -A=${P}.tar.gz +#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/${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 - try make - +# 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 |