diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-11-06 13:10:53 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-11-06 13:10:53 +0000 |
commit | c69de208cd0d30762be50f41aef3818cf790fa87 (patch) | |
tree | f82b13a955bdc28a1f63af9f11e9c2ecf03e5168 /app-arch/rpm2targz | |
parent | old (diff) | |
download | gentoo-2-c69de208cd0d30762be50f41aef3818cf790fa87.tar.gz gentoo-2-c69de208cd0d30762be50f41aef3818cf790fa87.tar.bz2 gentoo-2-c69de208cd0d30762be50f41aef3818cf790fa87.zip |
Support xz rpms #292057 by Rafał Mużyło and always use rpmoffset #249769 by Michael Haubenwallner.
(Portage version: 2.2_rc46/cvs/Linux x86_64)
Diffstat (limited to 'app-arch/rpm2targz')
-rw-r--r-- | app-arch/rpm2targz/ChangeLog | 9 | ||||
-rw-r--r-- | app-arch/rpm2targz/rpm2targz-9.0.0.4g.ebuild | 27 |
2 files changed, 35 insertions, 1 deletions
diff --git a/app-arch/rpm2targz/ChangeLog b/app-arch/rpm2targz/ChangeLog index 1ad7955fb8f2..1ceabaccc70d 100644 --- a/app-arch/rpm2targz/ChangeLog +++ b/app-arch/rpm2targz/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-arch/rpm2targz # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/rpm2targz/ChangeLog,v 1.79 2009/10/18 16:46:02 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/rpm2targz/ChangeLog,v 1.80 2009/11/06 13:10:53 vapier Exp $ + +*rpm2targz-9.0.0.4g (06 Nov 2009) + + 06 Nov 2009; Mike Frysinger <vapier@gentoo.org> + +rpm2targz-9.0.0.4g.ebuild: + Support xz rpms #292057 by Rafał Mużyło and always use rpmoffset + #249769 by Michael Haubenwallner. 18 Oct 2009; Alexis Ballier <aballier@gentoo.org> rpm2targz-9.0.0.3g.ebuild: diff --git a/app-arch/rpm2targz/rpm2targz-9.0.0.4g.ebuild b/app-arch/rpm2targz/rpm2targz-9.0.0.4g.ebuild new file mode 100644 index 000000000000..54c247ae743b --- /dev/null +++ b/app-arch/rpm2targz/rpm2targz-9.0.0.4g.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/rpm2targz/rpm2targz-9.0.0.4g.ebuild,v 1.1 2009/11/06 13:10:53 vapier Exp $ + +inherit toolchain-funcs + +DESCRIPTION="Convert a .rpm file to a .tar.gz archive" +HOMEPAGE="http://www.slackware.com/config/packages.php" +SRC_URI="mirror://gentoo/${P}.tar.lzma" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd" +IUSE="" + +RDEPEND="app-arch/cpio" +DEPEND="${DEPEND} + || ( app-arch/xz-utils app-arch/lzma-utils )" + +src_compile() { + emake CC="$(tc-getCC)" || die +} + +src_install() { + emake install DESTDIR="${D}" || die + dodoc *.README* +} |