diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2010-06-16 18:00:05 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2010-06-16 18:00:05 +0000 |
commit | 1a370967753610acc17f2aad08aaf70752229837 (patch) | |
tree | a2d7645e8cdaf7f660b45c324b3fa404c24e02b5 /app-editors | |
parent | Bump to .34, thanks to Andrew Lyon (diff) | |
download | gentoo-2-1a370967753610acc17f2aad08aaf70752229837.tar.gz gentoo-2-1a370967753610acc17f2aad08aaf70752229837.tar.bz2 gentoo-2-1a370967753610acc17f2aad08aaf70752229837.zip |
Version bump.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/hteditor/ChangeLog | 8 | ||||
-rw-r--r-- | app-editors/hteditor/hteditor-2.0.14.ebuild | 35 | ||||
-rw-r--r-- | app-editors/hteditor/hteditor-2.0.18.ebuild | 44 |
3 files changed, 51 insertions, 36 deletions
diff --git a/app-editors/hteditor/ChangeLog b/app-editors/hteditor/ChangeLog index 610cbf9c9661..22c62294eab8 100644 --- a/app-editors/hteditor/ChangeLog +++ b/app-editors/hteditor/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-editors/hteditor # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/hteditor/ChangeLog,v 1.41 2010/01/01 21:02:41 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/hteditor/ChangeLog,v 1.42 2010/06/16 18:00:05 ssuominen Exp $ + +*hteditor-2.0.18 (16 Jun 2010) + + 16 Jun 2010; Samuli Suominen <ssuominen@gentoo.org> + +hteditor-2.0.18.ebuild: + Version bump wrt #317495. 01 Jan 2010; Christian Faulhammer <fauli@gentoo.org> hteditor-2.0.17.ebuild: diff --git a/app-editors/hteditor/hteditor-2.0.14.ebuild b/app-editors/hteditor/hteditor-2.0.14.ebuild deleted file mode 100644 index 80de8d1b32da..000000000000 --- a/app-editors/hteditor/hteditor-2.0.14.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# 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 -} diff --git a/app-editors/hteditor/hteditor-2.0.18.ebuild b/app-editors/hteditor/hteditor-2.0.18.ebuild new file mode 100644 index 000000000000..9d9e7e399c8b --- /dev/null +++ b/app-editors/hteditor/hteditor-2.0.18.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/hteditor/hteditor-2.0.18.ebuild,v 1.1 2010/06/16 18:00:05 ssuominen Exp $ + +EAPI=3 + +MY_P=${P/editor} + +DESCRIPTION="A file viewer, editor and analyzer for text, binary, and executable files" +HOMEPAGE="http://hte.sourceforge.net/" +SRC_URI="mirror://sourceforge/hte/${MY_P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris" +IUSE="X" + +RDEPEND="sys-libs/ncurses + X? ( x11-libs/libX11 ) + >=dev-libs/lzo-2" +DEPEND="${RDEPEND} + sys-devel/bison + sys-devel/flex" + +S=${WORKDIR}/${MY_P} + +src_prepare() { + sed -i \ + -e '/FLAGS_ALL/s:-ggdb -g3 -O0::' \ + configure || die +} + +src_configure() { + econf \ + $(use_enable X x11-textmode) \ + --disable-release +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc AUTHORS ChangeLog KNOWNBUGS README TODO + dohtml doc/*.html + doinfo doc/*.info +} |