summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHanno Boeck <hanno@gentoo.org>2010-06-30 21:31:57 +0000
committerHanno Boeck <hanno@gentoo.org>2010-06-30 21:31:57 +0000
commitd45d5888638f24ecd60b5a51d7b4b17756b2c156 (patch)
treed8978010cb2f4ca0363de9da0ef2028e0f506d09 /app-arch/unrar-gpl
parentonly block old unrar-gpl-versions in unrar, unrar-gpl-binary name will (diff)
downloadhistorical-d45d5888638f24ecd60b5a51d7b4b17756b2c156.tar.gz
historical-d45d5888638f24ecd60b5a51d7b4b17756b2c156.tar.bz2
historical-d45d5888638f24ecd60b5a51d7b4b17756b2c156.zip
rename unrar-gpl binary from unrar to unrar-gpl to avoid confusion.
Package-Manager: portage-2.1.8.3/cvs/Linux x86_64
Diffstat (limited to 'app-arch/unrar-gpl')
-rw-r--r--app-arch/unrar-gpl/ChangeLog9
-rw-r--r--app-arch/unrar-gpl/unrar-gpl-0.0.1_p20080417-r1.ebuild29
2 files changed, 37 insertions, 1 deletions
diff --git a/app-arch/unrar-gpl/ChangeLog b/app-arch/unrar-gpl/ChangeLog
index 936bee08271a..8c5de8acfcc6 100644
--- a/app-arch/unrar-gpl/ChangeLog
+++ b/app-arch/unrar-gpl/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for app-arch/unrar-gpl
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/unrar-gpl/ChangeLog,v 1.11 2010/03/07 09:59:14 hanno Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/unrar-gpl/ChangeLog,v 1.12 2010/06/30 21:31:57 hanno Exp $
+
+*unrar-gpl-0.0.1_p20080417-r1 (30 Jun 2010)
+
+ 30 Jun 2010; Hanno Boeck <hanno@gentoo.org>
+ +unrar-gpl-0.0.1_p20080417-r1.ebuild:
+ Change binary name to unrar-gpl, to avoid applications assuming they can
+ use it to unpack current rar files.
07 Mar 2010; Hanno Boeck <hanno@gentoo.org>
unrar-gpl-0.0.1_p20080417.ebuild:
diff --git a/app-arch/unrar-gpl/unrar-gpl-0.0.1_p20080417-r1.ebuild b/app-arch/unrar-gpl/unrar-gpl-0.0.1_p20080417-r1.ebuild
new file mode 100644
index 000000000000..3d0d02e81c94
--- /dev/null
+++ b/app-arch/unrar-gpl/unrar-gpl-0.0.1_p20080417-r1.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-arch/unrar-gpl/unrar-gpl-0.0.1_p20080417-r1.ebuild,v 1.1 2010/06/30 21:31:57 hanno Exp $
+
+EAPI=2
+inherit autotools
+
+DESCRIPTION="Free rar unpacker for old (pre v3) rar files"
+HOMEPAGE="http://home.gna.org/unrar/"
+SRC_URI="mirror://gentoo/${P}.tar.bz2"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+DEPEND=""
+S="${WORKDIR}/${PN/-gpl}"
+
+src_prepare() {
+ eautoreconf || die "eautoreconf failed"
+}
+
+src_configure() {
+ econf --program-suffix="-gpl" || die "econf failed"
+}
+
+src_install() {
+ make DESTDIR="${D}" install || die "install failed"
+ dodoc AUTHORS README || die "dodoc failed"
+}