summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArcady Genkin <agenkin@gentoo.org>2002-05-24 06:33:53 +0000
committerArcady Genkin <agenkin@gentoo.org>2002-05-24 06:33:53 +0000
commit70bbe158df7840c6475acfc73c377b7839b48fa4 (patch)
tree04757ee828a854a8b6500377224a1ab6fea3970b /app-arch
parentNew Package. #2753 (diff)
downloadgentoo-2-70bbe158df7840c6475acfc73c377b7839b48fa4.tar.gz
gentoo-2-70bbe158df7840c6475acfc73c377b7839b48fa4.tar.bz2
gentoo-2-70bbe158df7840c6475acfc73c377b7839b48fa4.zip
Initial version of the package. Closes #2980.
Diffstat (limited to 'app-arch')
-rw-r--r--app-arch/lha/ChangeLog10
-rw-r--r--app-arch/lha/files/digest-lha-114i1
-rw-r--r--app-arch/lha/lha-114i.ebuild32
3 files changed, 43 insertions, 0 deletions
diff --git a/app-arch/lha/ChangeLog b/app-arch/lha/ChangeLog
new file mode 100644
index 000000000000..861bd3f50037
--- /dev/null
+++ b/app-arch/lha/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for app-arch/lha
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
+# $Header: /var/cvsroot/gentoo-x86/app-arch/lha/ChangeLog,v 1.1 2002/05/24 06:33:53 agenkin Exp $
+
+*lha-114i (24 May 2002)
+
+ 24 May 2002; Arcady Genkin <agenkin@thpoon.com> lha-114i.ebuild :
+
+ Initial version of the package, created by
+ ryan.shaw@stanfordalumni.org (Ryan Shaw). \ No newline at end of file
diff --git a/app-arch/lha/files/digest-lha-114i b/app-arch/lha/files/digest-lha-114i
new file mode 100644
index 000000000000..44da31fd5180
--- /dev/null
+++ b/app-arch/lha/files/digest-lha-114i
@@ -0,0 +1 @@
+MD5 5225884d557b91f04124693e2c5c9e94 lha-114i.tar.gz 64608
diff --git a/app-arch/lha/lha-114i.ebuild b/app-arch/lha/lha-114i.ebuild
new file mode 100644
index 000000000000..a0fae98ee635
--- /dev/null
+++ b/app-arch/lha/lha-114i.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-arch/lha/lha-114i.ebuild,v 1.1 2002/05/24 06:33:53 agenkin Exp $
+
+DESCRIPTION="Utility for creating and opening lzh archives."
+HOMEPAGE="http://www2m.biglobe.ne.jp/~dolphin/lha/lha-unix.htm"
+LICENSE="lha"
+
+DEPEND="virtual/glibc"
+
+SRC_URI="http://www2m.biglobe.ne.jp/~dolphin/lha/prog/${P}.tar.gz"
+
+src_unpack () {
+
+ unpack "${A}"
+ cd "${S}"
+ sed -e "/^OPTIMIZE/ s/-O2/${CFLAGS}/" < Makefile > Makefile.hacked
+ mv Makefile.hacked Makefile
+
+}
+
+src_compile () {
+
+ emake || die
+}
+
+src_install () {
+
+ dodir /usr/bin
+ dodir /usr/share/man/ja/man1
+ make BINDIR=${D}/usr/bin MANDIR=${D}/usr/share/man/ja install MANSECT=1 || die
+}