diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2006-10-18 17:02:02 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2006-10-18 17:02:02 +0000 |
commit | e6c561fba110835ff99c2774c88314a9e0b6a1a2 (patch) | |
tree | 6827bc69a213720939b9bea79dd3175a11f4af16 /app-arch | |
parent | Mark 1.4.1-r1 stable on alpha. #144549 (diff) | |
download | gentoo-2-e6c561fba110835ff99c2774c88314a9e0b6a1a2.tar.gz gentoo-2-e6c561fba110835ff99c2774c88314a9e0b6a1a2.tar.bz2 gentoo-2-e6c561fba110835ff99c2774c88314a9e0b6a1a2.zip |
Fixed security bug, #151252.
(Portage version: 2.1.1-r1)
Diffstat (limited to 'app-arch')
-rw-r--r-- | app-arch/lha/ChangeLog | 8 | ||||
-rw-r--r-- | app-arch/lha/files/digest-lha-1.14i_p20050924 | 3 | ||||
-rw-r--r-- | app-arch/lha/lha-1.14i_p20050924.ebuild | 25 |
3 files changed, 35 insertions, 1 deletions
diff --git a/app-arch/lha/ChangeLog b/app-arch/lha/ChangeLog index a3cca32e0de1..cbaf5469fcdc 100644 --- a/app-arch/lha/ChangeLog +++ b/app-arch/lha/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-arch/lha # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/lha/ChangeLog,v 1.26 2006/10/07 19:20:27 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/lha/ChangeLog,v 1.27 2006/10/18 17:02:02 matsuu Exp $ + +*lha-1.14i_p20050924 (19 Oct 2006) + + 19 Oct 2006; MATSUU Takuto <matsuu@gentoo.org> + +lha-1.14i_p20050924.ebuild: + Fixed security bug, #151252. 07 Oct 2006; Diego Pettenò <flameeyes@gentoo.org> files/lha-114i-malloc.patch, lha-114i-r5.ebuild: diff --git a/app-arch/lha/files/digest-lha-1.14i_p20050924 b/app-arch/lha/files/digest-lha-1.14i_p20050924 new file mode 100644 index 000000000000..30dceb7d89f8 --- /dev/null +++ b/app-arch/lha/files/digest-lha-1.14i_p20050924 @@ -0,0 +1,3 @@ +MD5 9f52430410928ba4390a73a41a36d56f lha-1.14i-ac20050924p1.tar.gz 285518 +RMD160 7603dc93d8afdeed6cfbaa193f68ae4283bea39b lha-1.14i-ac20050924p1.tar.gz 285518 +SHA256 b5261e9f98538816aa9e64791f23cb83f1632ecda61f02e54b6749e9ca5e9ee4 lha-1.14i-ac20050924p1.tar.gz 285518 diff --git a/app-arch/lha/lha-1.14i_p20050924.ebuild b/app-arch/lha/lha-1.14i_p20050924.ebuild new file mode 100644 index 000000000000..d1d49130031f --- /dev/null +++ b/app-arch/lha/lha-1.14i_p20050924.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/lha/lha-1.14i_p20050924.ebuild,v 1.1 2006/10/18 17:02:02 matsuu Exp $ + +MY_P="${P/_p/-ac}p1" +DESCRIPTION="Utility for creating and opening lzh archives" +HOMEPAGE="http://lha.sourceforge.jp/" +SRC_URI="mirror://sourceforge.jp/lha/22231/${MY_P}.tar.gz" + +LICENSE="lha" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~ppc-macos ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="" + +DEPEND="" + +S="${WORKDIR}/${MY_P}" + +src_install() { + emake DESTDIR="${D}" \ + mandir=/usr/share/man/ja \ + install || die + + dodoc 00readme.autoconf ChangeLog Hacking_of_LHa +} |