summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSerkan Kaba <serkan@gentoo.org>2008-11-02 00:49:49 +0000
committerSerkan Kaba <serkan@gentoo.org>2008-11-02 00:49:49 +0000
commit678836721883407df944122369ad2ed71afb1f88 (patch)
treebb7c21b0776e576ec9196b6a75d714c8670e574d /app-arch/rar
parentRe-add ~ia64 ~ppc64 ~sparc and ~x86-fbsd keywords - no reason for them being ... (diff)
downloadgentoo-2-678836721883407df944122369ad2ed71afb1f88.tar.gz
gentoo-2-678836721883407df944122369ad2ed71afb1f88.tar.bz2
gentoo-2-678836721883407df944122369ad2ed71afb1f88.zip
Version bump that adds a 64 bit version. Thanks to people in #245119 for their contributions.
(Portage version: 2.2_rc12/cvs/Linux 2.6.25-gentoo-r7 x86_64)
Diffstat (limited to 'app-arch/rar')
-rw-r--r--app-arch/rar/ChangeLog8
-rw-r--r--app-arch/rar/rar-3.8.0.ebuild36
2 files changed, 43 insertions, 1 deletions
diff --git a/app-arch/rar/ChangeLog b/app-arch/rar/ChangeLog
index 42ac4123720d..95092c0de8bc 100644
--- a/app-arch/rar/ChangeLog
+++ b/app-arch/rar/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for app-arch/rar
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/rar/ChangeLog,v 1.54 2008/02/21 23:40:45 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/rar/ChangeLog,v 1.55 2008/11/02 00:49:49 serkan Exp $
+
+*rar-3.8.0 (02 Nov 2008)
+
+ 02 Nov 2008; Serkan Kaba <serkan@gentoo.org> +rar-3.8.0.ebuild:
+ Version bump that adds a 64 bit version. Thanks to people in #245119 for
+ their contributions.
21 Feb 2008; Robin H. Johnson <robbat2@gentoo.org> rar-3.7.1.ebuild:
There are some alternatives to the emul compat package at times.
diff --git a/app-arch/rar/rar-3.8.0.ebuild b/app-arch/rar/rar-3.8.0.ebuild
new file mode 100644
index 000000000000..06fec1e4bbea
--- /dev/null
+++ b/app-arch/rar/rar-3.8.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-arch/rar/rar-3.8.0.ebuild,v 1.1 2008/11/02 00:49:49 serkan Exp $
+
+inherit toolchain-funcs
+
+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=""
+RESTRICT="strip"
+
+RDEPEND=">=sys-libs/glibc-2.4"
+
+S=${WORKDIR}/${PN}
+
+src_compile() { :; }
+
+src_install() {
+ into /opt/rar
+ dobin rar unrar || die "dobin rar unrar"
+ insinto /opt/rar/lib
+ doins default.sfx || die "default.sfx"
+ insinto /opt/rar/etc
+ doins rarfiles.lst || die "rarfiles.lst"
+ dodoc *.{txt,diz}
+ dodir /opt/bin
+ dosym ../rar/bin/rar /opt/bin/rar
+ dosym ../rar/bin/unrar /opt/bin/unrar
+ prepalldocs
+}