summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-arch')
-rw-r--r--app-arch/rar/ChangeLog9
-rw-r--r--app-arch/rar/rar-3.9.2.ebuild39
2 files changed, 46 insertions, 2 deletions
diff --git a/app-arch/rar/ChangeLog b/app-arch/rar/ChangeLog
index 3a2ef041c7fd..3aaa953a77b7 100644
--- a/app-arch/rar/ChangeLog
+++ b/app-arch/rar/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-arch/rar
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/rar/ChangeLog,v 1.62 2009/08/27 02:34:36 vostorga Exp $
+# 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 $
+
+*rar-3.9.2 (16 Feb 2010)
+
+ 16 Feb 2010; Samuli Suominen <ssuominen@gentoo.org> +rar-3.9.2.ebuild:
+ Version bump wrt #305219, thanks to Nikos Chantziaras for reporting.
27 Aug 2009; Víctor Ostorga <vostorga@gentoo.org> rar-3.9.0.ebuild:
Fixing keywords
diff --git a/app-arch/rar/rar-3.9.2.ebuild b/app-arch/rar/rar-3.9.2.ebuild
new file mode 100644
index 000000000000..685dc8728526
--- /dev/null
+++ b/app-arch/rar/rar-3.9.2.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.2.ebuild,v 1.1 2010/02/16 10:56:08 ssuominen 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
+}