diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-05-31 22:12:04 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-05-31 22:12:04 +0000 |
commit | 4559f7b9013ddd83e1078f81640d3fd153a05e4a (patch) | |
tree | f0f56511f8ca4be13b2cea17ed70dc40bbedba2a /app-editors/ne | |
parent | version bump, first gpg-signed package ;) (diff) | |
download | historical-4559f7b9013ddd83e1078f81640d3fd153a05e4a.tar.gz historical-4559f7b9013ddd83e1078f81640d3fd153a05e4a.tar.bz2 historical-4559f7b9013ddd83e1078f81640d3fd153a05e4a.zip |
dont install uselss COPYING file and fix other stuff while i'm at it
Diffstat (limited to 'app-editors/ne')
-rw-r--r-- | app-editors/ne/ne-1.19.ebuild | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/app-editors/ne/ne-1.19.ebuild b/app-editors/ne/ne-1.19.ebuild index 32a6906f327d..0463118c6307 100644 --- a/app-editors/ne/ne-1.19.ebuild +++ b/app-editors/ne/ne-1.19.ebuild @@ -1,21 +1,21 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/ne/ne-1.19.ebuild,v 1.4 2004/03/13 22:30:39 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/ne/ne-1.19.ebuild,v 1.5 2004/05/31 22:12:03 vapier Exp $ -DESCRIPTION="ne is the nice editor, easy to use for the beginner and powerful for the wizard" -SRC_URI="http://ne.dsi.unimi.it/${P}.tar.gz" +DESCRIPTION="the nice editor, easy to use for the beginner and powerful for the wizard" HOMEPAGE="http://ne.dsi.unimi.it/" +SRC_URI="http://ne.dsi.unimi.it/${P}.tar.gz" -DEPEND="ncurses? ( >=sys-libs/ncurses-5.2 )" -PROVIDE="virtual/editor" - +LICENSE="GPL-2" SLOT="0" KEYWORDS="x86" -LICENSE="GPL-2" IUSE="ncurses" +DEPEND="ncurses? ( >=sys-libs/ncurses-5.2 )" +PROVIDE="virtual/editor" + src_compile() { - if [ "`use ncurses`" ]; then + if use ncurses ; then emake -C src ne CFLAGS="${CFLAGS} -DNODEBUG -D_POSIX_C_SOURCE=199506L" LIBS="-lncurses" || die else emake -C src net CFLAGS="${CFLAGS} -DNODEBUG -DTERMCAP -D_POSIX_C_SOURCE=199506L" LIBS="" || die @@ -27,11 +27,10 @@ src_install() { into /usr - dobin src/ne + dobin src/ne || die doman doc/ne.1 doinfo doc/*.info* dohtml doc/*.html - dodoc CHANGES COPYING README + dodoc CHANGES README dodoc doc/*.txt doc/*.ps doc/*.texinfo doc/default.* } - |