diff options
author | Arcady Genkin <agenkin@gentoo.org> | 2002-05-24 06:33:53 +0000 |
---|---|---|
committer | Arcady Genkin <agenkin@gentoo.org> | 2002-05-24 06:33:53 +0000 |
commit | 9d92651839b974556abff3246c6763500d876d0e (patch) | |
tree | 89e52b87d2fbba139418c24554f19f3b6be28916 /app-arch | |
parent | New Package. #2753 (diff) | |
download | historical-9d92651839b974556abff3246c6763500d876d0e.tar.gz historical-9d92651839b974556abff3246c6763500d876d0e.tar.bz2 historical-9d92651839b974556abff3246c6763500d876d0e.zip |
Initial version of the package. Closes #2980.
Diffstat (limited to 'app-arch')
-rw-r--r-- | app-arch/lha/ChangeLog | 10 | ||||
-rw-r--r-- | app-arch/lha/files/digest-lha-114i | 1 | ||||
-rw-r--r-- | app-arch/lha/lha-114i.ebuild | 32 |
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 +} |