| 1 |
# Copyright 1999-2004 Gentoo Foundation |
| 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
# $Header: /var/cvsroot/gentoo-x86/eclass/rpm.eclass,v 1.11 2005/06/25 15:58:55 liquidx Exp $ |
| 4 |
|
| 5 |
# Author : Alastair Tse <liquidx@gentoo.org> (21 Jun 2003) |
| 6 |
# |
| 7 |
# Convienence class for extracting RPMs |
| 8 |
# |
| 9 |
# Basically, rpm_src_unpack does: |
| 10 |
# |
| 11 |
# 1. uses rpm_unpack to unpack a rpm file using rpmoffset and cpio |
| 12 |
# 2. if it is a source rpm, it finds all .tar .tar.gz, .tgz, .tbz2, .tar.bz2, |
| 13 |
# .zip, .ZIP and unpacks them using unpack() (with a little hackery) |
| 14 |
# 3. deletes all the unpacked tarballs and zip files from ${WORKDIR} |
| 15 |
# |
| 16 |
# This ebuild now re-defines a utility function called rpm_unpack which |
| 17 |
# basically does what rpm2targz does, except faster. It does not gzip the |
| 18 |
# output tar again but directly extracts to ${WORKDIR} |
| 19 |
# |
| 20 |
# It will autodetect for rpm2cpio (included in app-arch/rpm) and if it exists |
| 21 |
# it will use that instead of the less reliable rpmoffset. This means if a |
| 22 |
# particular rpm cannot be read using rpmoffset, you just need to put : |
| 23 |
# |
| 24 |
# DEPEND="app-arch/rpm" |
| 25 |
# |
| 26 |
# in your ebuild and it will install and use rpm2cpio instead. If you wish |
| 27 |
# to force your ebuild to use rpmoffset in the presence of rpm2cpio, define: |
| 28 |
# |
| 29 |
# USE_RPMOFFSET_ONLY="1" |
| 30 |
|
| 31 |
INHERITED="$INHERITED $ECLASS" |
| 32 |
|
| 33 |
USE_RPMOFFSET_ONLY=${USE_RPMOFFSET_ONLY-""} |
| 34 |
|
| 35 |
DEPEND=">=app-arch/rpm2targz-9.0-r1" |
| 36 |
|
| 37 |
# extracts the contents of the RPM in ${WORKDIR} |
| 38 |
rpm_unpack() { |
| 39 |
local rpmfile rpmoff decompcmd |
| 40 |
rpmfile=$1 |
| 41 |
if [ -z "${rpmfile}" ]; then |
| 42 |
return 1 |
| 43 |
fi |
| 44 |
if [ -x /usr/bin/rpm2cpio -a -z "${USE_RPMOFFSET_ONLY}" ]; then |
| 45 |
rpm2cpio ${rpmfile} | cpio -idmu --no-preserve-owner --quiet || return 1 |
| 46 |
else |
| 47 |
rpmoff=`rpmoffset < ${rpmfile}` |
| 48 |
[ -z "${rpmoff}" ] && return 1 |
| 49 |
|
| 50 |
decompcmd="gzip -dc" |
| 51 |
if [ -n "`dd if=${rpmfile} skip=${rpmoff} bs=1 count=3 2>/dev/null | file - | grep bzip2`" ]; then |
| 52 |
decompcmd="bzip2 -dc" |
| 53 |
fi |
| 54 |
dd ibs=${rpmoff} skip=1 if=${rpmfile} 2> /dev/null \ |
| 55 |
| ${decompcmd} \ |
| 56 |
| cpio -idmu --no-preserve-owner --quiet || return 1 |
| 57 |
fi |
| 58 |
|
| 59 |
return 0 |
| 60 |
} |
| 61 |
|
| 62 |
rpm_src_unpack() { |
| 63 |
local x prefix ext myfail OLD_DISTDIR |
| 64 |
|
| 65 |
for x in ${A}; do |
| 66 |
myfail="failure unpacking ${x}" |
| 67 |
ext=${x##*.} |
| 68 |
case "$ext" in |
| 69 |
rpm) |
| 70 |
echo ">>> Unpacking ${x}" |
| 71 |
prefix=${x%.rpm} |
| 72 |
cd ${WORKDIR} |
| 73 |
rpm_unpack ${DISTDIR}/${x} || die "${myfail}" |
| 74 |
|
| 75 |
# find all tar.gz files and extract for srpms |
| 76 |
if [ "${prefix##*.}" = "src" ]; then |
| 77 |
OLD_DISTDIR=${DISTDIR} |
| 78 |
DISTDIR=${WORKDIR} |
| 79 |
findopts="* -maxdepth 0 -name *.tar" |
| 80 |
for t in *.tar.gz *.tgz *.tbz2 *.tar.bz2 *.zip *.ZIP; do |
| 81 |
findopts="${findopts} -o -name ${t}" |
| 82 |
done |
| 83 |
for t in $(find ${findopts} | xargs); do |
| 84 |
unpack ${t} |
| 85 |
rm -f ${t} |
| 86 |
done |
| 87 |
DISTDIR=${OLD_DISTDIR} |
| 88 |
fi |
| 89 |
;; |
| 90 |
*) |
| 91 |
unpack ${x} |
| 92 |
;; |
| 93 |
esac |
| 94 |
done |
| 95 |
|
| 96 |
} |
| 97 |
|
| 98 |
EXPORT_FUNCTIONS src_unpack |