summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2013-06-26 09:04:20 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2013-06-26 09:04:20 +0000
commit5f85843c3ffb0c478345634b07cfda42751357f3 (patch)
treea8e78d6ae1f80e0a9a5c1b3f5477a722828ea66c /app-arch/unrar
parentVersion bump. (diff)
downloadgentoo-2-5f85843c3ffb0c478345634b07cfda42751357f3.tar.gz
gentoo-2-5f85843c3ffb0c478345634b07cfda42751357f3.tar.bz2
gentoo-2-5f85843c3ffb0c478345634b07cfda42751357f3.zip
old
(Portage version: 2.2.0_alpha184/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Diffstat (limited to 'app-arch/unrar')
-rw-r--r--app-arch/unrar/ChangeLog6
-rw-r--r--app-arch/unrar/unrar-5.0.2.ebuild56
-rw-r--r--app-arch/unrar/unrar-5.0.3.ebuild56
3 files changed, 5 insertions, 113 deletions
diff --git a/app-arch/unrar/ChangeLog b/app-arch/unrar/ChangeLog
index 5b46dd0f587b..0140b0f9fb83 100644
--- a/app-arch/unrar/ChangeLog
+++ b/app-arch/unrar/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-arch/unrar
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/unrar/ChangeLog,v 1.202 2013/06/26 09:03:01 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/unrar/ChangeLog,v 1.203 2013/06/26 09:04:20 ssuominen Exp $
+
+ 26 Jun 2013; Samuli Suominen <ssuominen@gentoo.org> -unrar-5.0.2.ebuild,
+ -unrar-5.0.3.ebuild:
+ old
*unrar-5.0.7 (26 Jun 2013)
diff --git a/app-arch/unrar/unrar-5.0.2.ebuild b/app-arch/unrar/unrar-5.0.2.ebuild
deleted file mode 100644
index dcbb63213ac6..000000000000
--- a/app-arch/unrar/unrar-5.0.2.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/unrar/unrar-5.0.2.ebuild,v 1.1 2013/05/01 11:32:59 ssuominen Exp $
-
-EAPI=5
-inherit eutils flag-o-matic multilib 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 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~arm-linux ~x86-linux"
-IUSE=""
-
-RDEPEND="!<=app-arch/unrar-gpl-0.0.1_p20080417"
-
-S=${WORKDIR}/unrar
-
-src_prepare() {
- epatch "${FILESDIR}"/${PN}-5.0.2-build.patch
- sed -i \
- -e "/libunrar/s:.so:$(get_libname ${PV%.*.*}):" \
- -e "s:-shared:& -Wl,-soname -Wl,libunrar$(get_libname ${PV%.*.*}):" \
- makefile || die
-}
-
-src_compile() {
- unrar_make() {
- emake CXX="$(tc-getCXX)" CXXFLAGS="${CXXFLAGS}" STRIP=true "$@"
- }
-
- unrar_make CXXFLAGS+=" -fPIC" lib
- ln -s libunrar$(get_libname ${PV%.*.*}) libunrar$(get_libname)
- ln -s libunrar$(get_libname ${PV%.*.*}) libunrar$(get_libname ${PV})
-
- # The stupid code compiles a lot of objects differently if
- # they're going into a lib (-DRARDLL) or into the main app.
- # So for now, we can't link the main app against the lib.
- unrar_make clean
- unrar_make
-}
-
-src_install() {
- dobin unrar
- dodoc readme.txt
-
- dolib.so libunrar*
-
- insinto /usr/include/libunrar${PV%.*.*}
- doins *.hpp
- dosym libunrar${PV%.*.*} /usr/include/libunrar
-}
diff --git a/app-arch/unrar/unrar-5.0.3.ebuild b/app-arch/unrar/unrar-5.0.3.ebuild
deleted file mode 100644
index 9ad761b26664..000000000000
--- a/app-arch/unrar/unrar-5.0.3.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/unrar/unrar-5.0.3.ebuild,v 1.1 2013/05/09 17:52:10 ssuominen Exp $
-
-EAPI=5
-inherit eutils flag-o-matic multilib 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 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~arm-linux ~x86-linux"
-IUSE=""
-
-RDEPEND="!<=app-arch/unrar-gpl-0.0.1_p20080417"
-
-S=${WORKDIR}/unrar
-
-src_prepare() {
- epatch "${FILESDIR}"/${PN}-5.0.2-build.patch
- sed -i \
- -e "/libunrar/s:.so:$(get_libname ${PV%.*.*}):" \
- -e "s:-shared:& -Wl,-soname -Wl,libunrar$(get_libname ${PV%.*.*}):" \
- makefile || die
-}
-
-src_compile() {
- unrar_make() {
- emake CXX="$(tc-getCXX)" CXXFLAGS="${CXXFLAGS}" STRIP=true "$@"
- }
-
- unrar_make CXXFLAGS+=" -fPIC" lib
- ln -s libunrar$(get_libname ${PV%.*.*}) libunrar$(get_libname)
- ln -s libunrar$(get_libname ${PV%.*.*}) libunrar$(get_libname ${PV})
-
- # The stupid code compiles a lot of objects differently if
- # they're going into a lib (-DRARDLL) or into the main app.
- # So for now, we can't link the main app against the lib.
- unrar_make clean
- unrar_make
-}
-
-src_install() {
- dobin unrar
- dodoc readme.txt
-
- dolib.so libunrar*
-
- insinto /usr/include/libunrar${PV%.*.*}
- doins *.hpp
- dosym libunrar${PV%.*.*} /usr/include/libunrar
-}