summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Weber <xmw@gentoo.org>2010-10-05 09:48:45 +0000
committerMichael Weber <xmw@gentoo.org>2010-10-05 09:48:45 +0000
commitf98d2a1ed1c0b75ed64e7643e2305d04ce34ff1f (patch)
treedc109907b83e3e6a9f920469eac8e299979d69e8 /app-arch/rar
parentPass the extra plugin dir in a command-line flag instead of patching the sour... (diff)
downloadgentoo-2-f98d2a1ed1c0b75ed64e7643e2305d04ce34ff1f.tar.gz
gentoo-2-f98d2a1ed1c0b75ed64e7643e2305d04ce34ff1f.tar.bz2
gentoo-2-f98d2a1ed1c0b75ed64e7643e2305d04ce34ff1f.zip
Version bump
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'app-arch/rar')
-rw-r--r--app-arch/rar/ChangeLog7
-rw-r--r--app-arch/rar/rar-3.9.3.ebuild39
2 files changed, 45 insertions, 1 deletions
diff --git a/app-arch/rar/ChangeLog b/app-arch/rar/ChangeLog
index 3aaa953a77b7..a0ea3c1b5b04 100644
--- a/app-arch/rar/ChangeLog
+++ b/app-arch/rar/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-arch/rar
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/rar/ChangeLog,v 1.63 2010/02/16 10:56:08 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/rar/ChangeLog,v 1.64 2010/10/05 09:48:44 xmw Exp $
+
+*rar-3.9.3 (05 Oct 2010)
+
+ 05 Oct 2010; Michael Weber <xmw@gentoo.org> +rar-3.9.3.ebuild:
+ Version bump wrt #339784, thanks to Mario Fetka for reporting.
*rar-3.9.2 (16 Feb 2010)
diff --git a/app-arch/rar/rar-3.9.3.ebuild b/app-arch/rar/rar-3.9.3.ebuild
new file mode 100644
index 000000000000..2a2443a19a4b
--- /dev/null
+++ b/app-arch/rar/rar-3.9.3.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-arch/rar/rar-3.9.3.ebuild,v 1.1 2010/10/05 09:48:45 xmw Exp $
+
+DESCRIPTION="RAR compressor/uncompressor"
+HOMEPAGE="http://www.rarsoft.com/"
+SRC_URI="x86? ( http://www.rarlab.com/rar/rarlinux-${PV}.tar.gz )
+ amd64? ( http://www.rarlab.com/rar/rarlinux-x64-${PV}.tar.gz )"
+
+LICENSE="RAR"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~x86"
+IUSE=""
+
+RDEPEND=">=sys-libs/glibc-2.4"
+
+S=${WORKDIR}/${PN}
+
+QA_DT_HASH="opt/rar/lib/default.sfx
+ opt/rar/bin/unrar
+ opt/rar/bin/rar"
+QA_PRESTRIPPED="opt/rar/lib/default.sfx
+ opt/rar/bin/unrar
+ opt/rar/bin/rar"
+
+src_compile() { :; }
+
+src_install() {
+ into /opt/rar
+ dobin rar unrar || die
+ insinto /opt/rar/lib
+ doins default.sfx || die
+ insinto /opt/rar/etc
+ doins rarfiles.lst || die
+ dodoc *.txt
+ dodir /opt/bin
+ dosym ../rar/bin/rar /opt/bin/rar
+ dosym ../rar/bin/unrar /opt/bin/unrar
+}