diff options
author | Serkan Kaba <serkan@gentoo.org> | 2008-11-02 00:49:49 +0000 |
---|---|---|
committer | Serkan Kaba <serkan@gentoo.org> | 2008-11-02 00:49:49 +0000 |
commit | 548fd3386b167030392560baf70868decbbfefaf (patch) | |
tree | 27c166ee5b55f5980224bb6d7208f218596c4eee /app-arch/rar/rar-3.8.0.ebuild | |
parent | Re-add ~ia64 ~ppc64 ~sparc and ~x86-fbsd keywords - no reason for them being ... (diff) | |
download | historical-548fd3386b167030392560baf70868decbbfefaf.tar.gz historical-548fd3386b167030392560baf70868decbbfefaf.tar.bz2 historical-548fd3386b167030392560baf70868decbbfefaf.zip |
Version bump that adds a 64 bit version. Thanks to people in #245119 for their contributions.
Package-Manager: portage-2.2_rc12/cvs/Linux 2.6.25-gentoo-r7 x86_64
Diffstat (limited to 'app-arch/rar/rar-3.8.0.ebuild')
-rw-r--r-- | app-arch/rar/rar-3.8.0.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
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 +} |