summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatsuu Takuto <matsuu@gentoo.org>2003-11-18 15:47:29 +0000
committerMatsuu Takuto <matsuu@gentoo.org>2003-11-18 15:47:29 +0000
commita2767ad07d80ea9b982e363f59959c9b24748583 (patch)
treefe6e5906be21640255ab9bfe311ff7e40dbe6bfe /app-text/lv
parentVersion bump. (diff)
downloadgentoo-2-a2767ad07d80ea9b982e363f59959c9b24748583.tar.gz
gentoo-2-a2767ad07d80ea9b982e363f59959c9b24748583.tar.bz2
gentoo-2-a2767ad07d80ea9b982e363f59959c9b24748583.zip
Version bump.
Diffstat (limited to 'app-text/lv')
-rw-r--r--app-text/lv/ChangeLog7
-rw-r--r--app-text/lv/Manifest4
-rw-r--r--app-text/lv/files/digest-lv-4.501
-rw-r--r--app-text/lv/lv-4.50.ebuild31
4 files changed, 40 insertions, 3 deletions
diff --git a/app-text/lv/ChangeLog b/app-text/lv/ChangeLog
index 74e2c194a4cd..9d6d02218fa0 100644
--- a/app-text/lv/ChangeLog
+++ b/app-text/lv/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-text/lv
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/lv/ChangeLog,v 1.9 2003/11/12 03:35:02 matsuu Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/lv/ChangeLog,v 1.10 2003/11/18 15:47:25 matsuu Exp $
+
+*lv-4.50 (19 Nov 2003)
+
+ 19 Nov 2003; MATSUU Takuto <matsuu@gentoo.org> lv-4.50.ebuild:
+ Version bump. Add dodoc. Fix some issues.
*lv-4.49.5-r1 (18 May 2003)
12 Nov 2003; MATSUU Takuto <matsuu@gentoo.org> lv-4.49.5-r1.ebuild:
diff --git a/app-text/lv/Manifest b/app-text/lv/Manifest
index cb78d6d16610..eaf7e434877e 100644
--- a/app-text/lv/Manifest
+++ b/app-text/lv/Manifest
@@ -1,8 +1,8 @@
-MD5 2727f9f43f5a777725d3977fa4b1b470 ChangeLog 1127
+MD5 58e2b1c424689a1a9ea33877be0d538f ChangeLog 1262
MD5 6422ff27c0e88f0df5bfe8ee0780dfdb lv-4.49.4.ebuild 689
MD5 f59e4e6d5731ac0d18dfb27bcae6d99c lv-4.49.5-r1.ebuild 720
MD5 11b76ed6c9778ffcdea9c48b2373a3d0 lv-4.49.5.ebuild 685
-MD5 41532e8c311923da08751fab9f58e0db lv-4.50.ebuild 809
+MD5 7b6ced3ff388b18b16bf8ff1a7884515 lv-4.50.ebuild 769
MD5 83b0a279f6da49eb562849b8289102bb files/digest-lv-4.49.4 58
MD5 ad23eb0684d13cea1b6901909cfde599 files/digest-lv-4.49.5 58
MD5 ad23eb0684d13cea1b6901909cfde599 files/digest-lv-4.49.5-r1 58
diff --git a/app-text/lv/files/digest-lv-4.50 b/app-text/lv/files/digest-lv-4.50
new file mode 100644
index 000000000000..2b97a53f997b
--- /dev/null
+++ b/app-text/lv/files/digest-lv-4.50
@@ -0,0 +1 @@
+MD5 4dc7ef7043ce0711d4ef072b22943182 lv450.tar.gz 604731
diff --git a/app-text/lv/lv-4.50.ebuild b/app-text/lv/lv-4.50.ebuild
new file mode 100644
index 000000000000..9967a89865c6
--- /dev/null
+++ b/app-text/lv/lv-4.50.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/lv/lv-4.50.ebuild,v 1.1 2003/11/18 15:47:25 matsuu Exp $
+
+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"
+SLOT="0"
+KEYWORDS="~x86 ~ppc ~alpha ~sparc ~ia64 ~amd64"
+IUSE=""
+
+DEPEND="virtual/glibc
+ sys-libs/ncurses"
+S=${WORKDIR}/${MY_P}/build
+
+src_compile() {
+ LIBS=-lncurses ../src/configure \
+ --host=${HOST} \
+ --prefix=/usr \
+ --mandir=/usr/share/man || die
+ emake || die
+}
+src_install() {
+ dodir /usr/{bin,lib,share/man/man1}
+ einstall
+
+ dodoc ../README
+}