diff options
author | 2006-06-08 10:34:46 +0000 | |
---|---|---|
committer | 2006-06-08 10:34:46 +0000 | |
commit | 441eb59b5b5eb6d15b6b068acf83e0fe92bf60be (patch) | |
tree | 7966ce76967aad73ce454fb1d494402daddf8bb5 /app-arch/unrar/unrar-3.6.4.ebuild | |
parent | Version bump #135594 by Ron Hu. (diff) | |
download | gentoo-2-441eb59b5b5eb6d15b6b068acf83e0fe92bf60be.tar.gz gentoo-2-441eb59b5b5eb6d15b6b068acf83e0fe92bf60be.tar.bz2 gentoo-2-441eb59b5b5eb6d15b6b068acf83e0fe92bf60be.zip |
Version bump #135953 by Arthur Koziel.
(Portage version: 2.1_rc4-r3)
Diffstat (limited to 'app-arch/unrar/unrar-3.6.4.ebuild')
-rw-r--r-- | app-arch/unrar/unrar-3.6.4.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/app-arch/unrar/unrar-3.6.4.ebuild b/app-arch/unrar/unrar-3.6.4.ebuild new file mode 100644 index 000000000000..6ec8058bb4a1 --- /dev/null +++ b/app-arch/unrar/unrar-3.6.4.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/unrar/unrar-3.6.4.ebuild,v 1.1 2006/06/08 10:34:46 vapier Exp $ + +inherit toolchain-funcs + +MY_PN=${PN}src +DESCRIPTION="Uncompress rar files" +HOMEPAGE="http://www.rarlab.com/rar_add.htm" +SRC_URI="http://www.rarlab.com/rar/${MY_PN}-${PV}.tar.gz" + +LICENSE="unRAR" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc-macos ~ppc64 ~sparc ~x86" +IUSE="" + +DEPEND="!app-arch/unrar-gpl" + +S=${WORKDIR}/unrar + +src_compile() { + emake \ + -f makefile.unix \ + CXXFLAGS="${CXXFLAGS}" \ + CXX="$(tc-getCXX)" \ + STRIP="true" || die "emake failed" +} + +src_install() { + dobin unrar || die "dobin failed" + dodoc readme.txt +} |