diff options
author | Daniel Black <dragonheart@gentoo.org> | 2008-08-17 04:47:40 +0000 |
---|---|---|
committer | Daniel Black <dragonheart@gentoo.org> | 2008-08-17 04:47:40 +0000 |
commit | 4248321858cea9c9091c7b6b5302f6b461823002 (patch) | |
tree | 9c8e61d59a8e86ab60fc6f0c4bb0e7f8bc5bca41 /app-editors/hteditor/hteditor-2.0.14.ebuild | |
parent | remove reference to media-libs/libdts which has gone away (diff) | |
download | gentoo-2-4248321858cea9c9091c7b6b5302f6b461823002.tar.gz gentoo-2-4248321858cea9c9091c7b6b5302f6b461823002.tar.bz2 gentoo-2-4248321858cea9c9091c7b6b5302f6b461823002.zip |
version bump as per bug #234363 thanks to darkdimius
(Portage version: 2.2_rc1/cvs/Linux 2.6.22-vs2.2.0.7-gentoo x86_64)
Diffstat (limited to 'app-editors/hteditor/hteditor-2.0.14.ebuild')
-rw-r--r-- | app-editors/hteditor/hteditor-2.0.14.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/app-editors/hteditor/hteditor-2.0.14.ebuild b/app-editors/hteditor/hteditor-2.0.14.ebuild new file mode 100644 index 000000000000..80de8d1b32da --- /dev/null +++ b/app-editors/hteditor/hteditor-2.0.14.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/hteditor/hteditor-2.0.14.ebuild,v 1.1 2008/08/17 04:47:40 dragonheart Exp $ + +MY_PV=${PV/_/} + +DESCRIPTION="editor for executable files" +HOMEPAGE="http://hte.sourceforge.net/" +SRC_URI="mirror://sourceforge/hte/ht-${MY_PV}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="X" + +RDEPEND="sys-libs/ncurses + X? ( x11-libs/libX11 ) + >=dev-libs/lzo-2" +DEPEND="${RDEPEND} + sys-devel/bison + sys-devel/flex" + +S=${WORKDIR}/ht-${MY_PV} + +src_compile() { + econf --disable-release --enable-maintainer-mode $(use_enable X x11-textmode) + emake || die "emake failed." +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed." + dodoc AUTHORS KNOWNBUGS TODO README ChangeLog + dohtml doc/ht.html + doinfo doc/ht.info doc/hthelp.info +} |