diff options
author | Tod Neidt <tod@gentoo.org> | 2002-05-14 15:42:31 +0000 |
---|---|---|
committer | Tod Neidt <tod@gentoo.org> | 2002-05-14 15:42:31 +0000 |
commit | e79898a8f541ec67f1539f5e288d36274f637bad (patch) | |
tree | 3bedd6025b293866ac51120c99b7f9ad3ad70e64 /app-text/manedit | |
parent | initial ebuild (diff) | |
download | gentoo-2-e79898a8f541ec67f1539f5e288d36274f637bad.tar.gz gentoo-2-e79898a8f541ec67f1539f5e288d36274f637bad.tar.bz2 gentoo-2-e79898a8f541ec67f1539f5e288d36274f637bad.zip |
Fix to install to /usr instead of / (bug# 2565), submitted by Nicholas Jones. Also, fixed up formatting and such to pass lintool.
Diffstat (limited to 'app-text/manedit')
-rw-r--r-- | app-text/manedit/ChangeLog | 11 | ||||
-rw-r--r-- | app-text/manedit/files/digest-manedit-0.5.6-r1 | 1 | ||||
-rw-r--r-- | app-text/manedit/manedit-0.5.6-r1.ebuild | 46 |
3 files changed, 56 insertions, 2 deletions
diff --git a/app-text/manedit/ChangeLog b/app-text/manedit/ChangeLog index 7120450223d2..2da8a4148bb3 100644 --- a/app-text/manedit/ChangeLog +++ b/app-text/manedit/ChangeLog @@ -1,10 +1,17 @@ # ChangeLog for app-text/manedit # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-text/manedit/ChangeLog,v 1.1 2002/05/02 23:38:06 agenkin Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/manedit/ChangeLog,v 1.2 2002/05/14 15:42:31 tod Exp $ + +*manedit-0.5.6-r1 (14 May, 2002) + + 14 May 2002; Tod Neidt <tod@thpoon.com> manedit-0.5.6-r1.ebuild : + + Fix to install in /usr (Bug# 2565), submitted by Nicholas Jones + <carpaski@twobit.net>. Also, fixed up formatting, etc to pass lintool. *manedit-0.5.6 (2 May, 2002) 2 May 2002; Arcady Genkin <agenkin@thpoon.com> manedit-0.5.6.ebuild : Initial version of the ebuild, submitted by Nicholas Jones - <carpaski@twobit.net>.
\ No newline at end of file + <carpaski@twobit.net>. diff --git a/app-text/manedit/files/digest-manedit-0.5.6-r1 b/app-text/manedit/files/digest-manedit-0.5.6-r1 new file mode 100644 index 000000000000..e6644da95a2b --- /dev/null +++ b/app-text/manedit/files/digest-manedit-0.5.6-r1 @@ -0,0 +1 @@ +MD5 8039d8167c0338f8b8666ae9a516e0a0 manedit-0.5.6.tar.bz2 425714 diff --git a/app-text/manedit/manedit-0.5.6-r1.ebuild b/app-text/manedit/manedit-0.5.6-r1.ebuild new file mode 100644 index 000000000000..362a7d1f599d --- /dev/null +++ b/app-text/manedit/manedit-0.5.6-r1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author: Nicholas Jones <carpaski@twobit.net> +# Maintainer: Nicholas Jones <carpaski@twobit.net> +# $Header: /var/cvsroot/gentoo-x86/app-text/manedit/manedit-0.5.6-r1.ebuild,v 1.1 2002/05/14 15:42:31 tod Exp $ + +S=${WORKDIR}/${P} + +DESCRIPTION="Man page editor using XML tags" + +SRC_URI="ftp://wolfpack.twu.net/users/wolfpack/${P}.tar.bz2" + +HOMEPAGE="http://wolfpack.twu.net/ManEdit" + +LICENSE="GPL-2" +SLOT="0" + +DEPEND="virtual/glibc + virtual/x11 + x11-libs/gtk+ + sys-libs/zlib + sys-apps/bzip2" + +RDEPEND=${DEPEND} + + +src_compile() { + + # It autodetects x86 processors and adds the -march option itself + # but we don't actually want that. + env CFLAGS="${CFLAGS}" ./configure Linux \ + --prefix=/usr \ + --enable=bzip2 \ + --enable=zlib \ + --disable="arch-i486" \ + --disable="arch-i586" \ + --disable="arch-i686" \ + --disable="arch-pentiumpro" || die "Bad Configure" + + emake || die "Compile Error" +} + +src_install() { + make PREFIX=${D}/usr install || die "make install failed." + dodoc AUTHORS LICENSE README +} |