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/hexedit | |
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/hexedit')
-rw-r--r-- | app-editors/hexedit/hexedit-1.2.2.ebuild | 28 |
1 files changed, 11 insertions, 17 deletions
diff --git a/app-editors/hexedit/hexedit-1.2.2.ebuild b/app-editors/hexedit/hexedit-1.2.2.ebuild index 4a4c19b3a387..ba04d6dd7ed1 100644 --- a/app-editors/hexedit/hexedit-1.2.2.ebuild +++ b/app-editors/hexedit/hexedit-1.2.2.ebuild @@ -1,30 +1,24 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/hexedit/hexedit-1.2.2.ebuild,v 1.12 2004/01/18 20:22:37 zul Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/hexedit/hexedit-1.2.2.ebuild,v 1.13 2004/05/31 22:12:03 vapier Exp $ -S="${WORKDIR}/hexedit" -DESCRIPTION="View and edit files in hex or ASCII." -SRC_URI="http://merd.net/pixel/${P}.src.tgz" +DESCRIPTION="View and edit files in hex or ASCII" HOMEPAGE="http://www.chez.com/prigaux/hexedit.html" +SRC_URI="http://merd.net/pixel/${P}.src.tgz" -DEPEND="virtual/glibc - sys-libs/ncurses" -RDEPEND="" - +LICENSE="GPL-1" SLOT="0" KEYWORDS="x86 ppc sparc alpha amd64" -LICENSE="GPL-1" +IUSE="" -src_compile() { - cd "${S}" - ./configure --host="${CHOST}" --prefix=/usr --mandir=/usr/share/man \ - || die "./configure failed" +DEPEND="virtual/glibc + sys-libs/ncurses" +RDEPEND="sys-libs/ncurses" - emake || die -} +S=${WORKDIR}/hexedit src_install () { - dobin hexedit + dobin hexedit || die doman hexedit.1 - dodoc COPYING Changes TODO + dodoc Changes TODO } |