Magellan Linux

Contents of /trunk/core/debianutils/debianutils-4.3-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 11837 - (show annotations) (download)
Mon Apr 23 17:36:04 2012 UTC (12 years, 1 month ago) by niro
File size: 985 byte(s)
auto added: ver bump to 4.3-r1
1 # $Id$
2
3 PNAME="debianutils"
4 PVER="4.3"
5 PBUILD="r1"
6
7 PCAT="sys-apps"
8
9 DESCRIPTION="Provides run-parts, savelog, ischroot, add-shell, remove-shell, tempfile."
10 HOMEPAGE="http://packages.debian.org/unstable/utils/debianutils"
11
12 DEPEND=">= virtual/glibc
13 >= app-arch/bzip2-1.0.5
14 >= sys-apps/coreutils-8"
15
16 SDEPEND=">= sys-dev/automake-4
17 >= sys-dev/autoconf-5"
18
19 SRCFILE="${PNAME}_${PVER}.tar.gz"
20 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
21
22 sminclude mbuild
23
24 SRC_URI=(
25 http://ftp.debian.org/debian/pool/main/d/${PNAME}/${SRCFILE}
26 mirror://${PNAME}/${SRCFILE}
27 mirror://${PNAME}/${PNAME}-4.1-no-which.patch
28 mirror://${PNAME}/${PNAME}-4.1-no-installkernel.patch
29 )
30
31 UP2DATE="updatecmd http://ftp.debian.org/debian/pool/main/d/${PNAME} | grep .tar.gz | sed -n 's/.*_\(.*\).t.*/\1/;$ p'"
32
33 src_prepare()
34 {
35 munpack ${SRCFILE} || die
36 cd ${SRCDIR}
37
38 # disable which and installkernel
39 mpatch ${PNAME}-4.1-no-which.patch || die
40 mpatch ${PNAME}-4.1-no-installkernel.patch || die
41
42 mautoreconf || die
43 }