diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2012-05-12 17:16:03 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2012-05-12 17:16:03 +0000 |
commit | 2d5a58abc959c0c5e39251e9bf083d99d8fb82b8 (patch) | |
tree | 1fd43edee9d0e150cd4fad8499a4e9b507001a23 /app-arch/unshield | |
parent | Version bump. (diff) | |
download | gentoo-2-2d5a58abc959c0c5e39251e9bf083d99d8fb82b8.tar.gz gentoo-2-2d5a58abc959c0c5e39251e9bf083d99d8fb82b8.tar.bz2 gentoo-2-2d5a58abc959c0c5e39251e9bf083d99d8fb82b8.zip |
old
(Portage version: 2.2.0_alpha103/cvs/Linux x86_64)
Diffstat (limited to 'app-arch/unshield')
-rw-r--r-- | app-arch/unshield/ChangeLog | 6 | ||||
-rw-r--r-- | app-arch/unshield/files/unshield-0.5-amd64.patch | 22 | ||||
-rw-r--r-- | app-arch/unshield/unshield-0.5-r1.ebuild | 27 |
3 files changed, 5 insertions, 50 deletions
diff --git a/app-arch/unshield/ChangeLog b/app-arch/unshield/ChangeLog index 1f3dd163f6e2..b5470a7613d1 100644 --- a/app-arch/unshield/ChangeLog +++ b/app-arch/unshield/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-arch/unshield # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/unshield/ChangeLog,v 1.24 2012/03/21 06:12:27 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/unshield/ChangeLog,v 1.25 2012/05/12 17:16:03 ssuominen Exp $ + + 12 May 2012; Samuli Suominen <ssuominen@gentoo.org> -unshield-0.5-r1.ebuild, + -files/unshield-0.5-amd64.patch: + old 21 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> unshield-0.6.ebuild: x86 stable wrt #407375 diff --git a/app-arch/unshield/files/unshield-0.5-amd64.patch b/app-arch/unshield/files/unshield-0.5-amd64.patch deleted file mode 100644 index e9f59e7a0e14..000000000000 --- a/app-arch/unshield/files/unshield-0.5-amd64.patch +++ /dev/null @@ -1,22 +0,0 @@ ---- lib/md5/global.h -+++ lib/md5/global.h -@@ -17,7 +17,7 @@ - typedef unsigned short int UINT2; - - /* UINT4 defines a four byte word */ --typedef unsigned long int UINT4; -+typedef unsigned int UINT4; - - /* PROTO_LIST is defined depending on how PROTOTYPES is defined above. - If using PROTOTYPES, then PROTO_LIST returns the list, otherwise it ---- lib/md5/md5c.c -+++ lib/md5/md5c.c -@@ -68,7 +68,7 @@ - - /* ROTATE_LEFT rotates x left n bits. - */ --#define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n)))) -+#define ROTATE_LEFT(x, n) ((((x) << (n)) & 0xffffffffU) | ((x) >> (32-(n)))) - - /* FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4. - Rotation is separate from addition to prevent recomputation. diff --git a/app-arch/unshield/unshield-0.5-r1.ebuild b/app-arch/unshield/unshield-0.5-r1.ebuild deleted file mode 100644 index 01e27f30bf46..000000000000 --- a/app-arch/unshield/unshield-0.5-r1.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/unshield/unshield-0.5-r1.ebuild,v 1.4 2011/02/27 10:13:09 ssuominen Exp $ - -EAPI=2 -inherit eutils - -DESCRIPTION="InstallShield CAB file extractor" -HOMEPAGE="http://www.synce.org/" -SRC_URI="mirror://sourceforge/synce/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~hppa ~ppc x86" -IUSE="" - -RDEPEND=">=sys-libs/zlib-1.1.4" -DEPEND="${RDEPEND}" - -src_prepare() { - epatch "${FILESDIR}"/${P}-amd64.patch -} - -src_install() { - emake DESTDIR="${D}" install || die - dodoc README -} |