diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2011-01-13 14:47:24 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2011-01-13 14:47:24 +0000 |
commit | 1957e2e504975097be97b254bfe83a3a7a26f61f (patch) | |
tree | f1aca55c91d48c81e23120d7e00771acceebf54a /app-text/lv | |
parent | ppc stable wrt #351547 (diff) | |
download | gentoo-2-1957e2e504975097be97b254bfe83a3a7a26f61f.tar.gz gentoo-2-1957e2e504975097be97b254bfe83a3a7a26f61f.tar.bz2 gentoo-2-1957e2e504975097be97b254bfe83a3a7a26f61f.zip |
Added src_configure, bug #351473.
(Portage version: 2.1.9.28/cvs/Linux x86_64)
Diffstat (limited to 'app-text/lv')
-rw-r--r-- | app-text/lv/ChangeLog | 9 | ||||
-rw-r--r-- | app-text/lv/lv-4.51-r3.ebuild | 52 |
2 files changed, 59 insertions, 2 deletions
diff --git a/app-text/lv/ChangeLog b/app-text/lv/ChangeLog index 41951ff50482..5dde5157d411 100644 --- a/app-text/lv/ChangeLog +++ b/app-text/lv/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/lv -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/lv/ChangeLog,v 1.35 2010/10/11 08:12:47 hattya Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/lv/ChangeLog,v 1.36 2011/01/13 14:47:24 matsuu Exp $ + +*lv-4.51-r3 (13 Jan 2011) + + 13 Jan 2011; MATSUU Takuto <matsuu@gentoo.org> +lv-4.51-r3.ebuild: + Added src_configure, bug #351473. *lv-4.51-r2 (11 Oct 2010) diff --git a/app-text/lv/lv-4.51-r3.ebuild b/app-text/lv/lv-4.51-r3.ebuild new file mode 100644 index 000000000000..3b8375f73962 --- /dev/null +++ b/app-text/lv/lv-4.51-r3.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/lv/lv-4.51-r3.ebuild,v 1.1 2011/01/13 14:47:24 matsuu Exp $ + +EAPI="3" + +inherit eutils toolchain-funcs + +IUSE="" + +MY_P="${PN}${PV//./}" + +DESCRIPTION="Powerful Multilingual File Viewer" +HOMEPAGE="http://www.ff.iij4u.or.jp/~nrt/lv/" +SRC_URI="http://www.ff.iij4u.or.jp/~nrt/freeware/${MY_P}.tar.gz" + +LICENSE="GPL-2" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd" +SLOT="0" +S="${WORKDIR}/${MY_P}" + +RDEPEND="sys-libs/ncurses + !app-editors/levee" +DEPEND="${RDEPEND} + dev-lang/perl" + +src_prepare() { + + epatch "${FILESDIR}"/${P}-gentoo.patch + epatch "${FILESDIR}"/${P}-xz.diff + +} + +src_configure() { + + ECONF_SOURCE=src econf || die + +} +src_compile() { + + emake CC="$(tc-getCC)" || die + +} + +src_install() { + + emake DESTDIR="${D}" install || die + + dodoc README hello.sample || die + dohtml index.html relnote.html hello.sample.gif || die + +} |