Magellan Linux

Contents of /branches/magellan-next/extras/quilt/quilt-0.48-r2.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 8393 - (show annotations) (download)
Fri Jul 15 12:34:59 2011 UTC (12 years, 10 months ago) by niro
File size: 989 byte(s)
auto added: ver bump to 0.48-r2
1 # $Id$
2
3 PNAME="quilt"
4 PVER="0.48"
5 PBUILD="r2"
6
7 PCATEGORIE="dev-util"
8
9 DESCRIPTION="quilt - patch management scripts."
10 HOMEPAGE="http://savannah.nongnu.org/projects/quilt/"
11
12 DEPEND=">= sys-apps/ed-1.1
13 >= sys-apps/coreutils-8.12
14 >= dev-util/diffstat-1.54
15 >= media-gfx/graphviz-2.28"
16
17 SRCFILE="${PNAME}-${PVER}.tar.gz"
18 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
19
20 sminclude mbuild
21
22 SRC_URI=(
23 http://download.savannah.gnu.org/releases/${PNAME}/${SRCFILE}
24 mirror://${PNAME}/${SRCFILE}
25 )
26
27 UP2DATE="updatecmd http://download.savannah.gnu.org/releases/${PNAME}/ | lasttarball gz"
28
29 src_install()
30 {
31 cd ${SRCDIR}
32 mmake BUILD_ROOT=${BINDIR} install || die
33
34 # remove unneeded stuff
35 rm -rf ${BINDIR}/etc/bash_completion.d || die
36 rm -rf ${BINDIR}/usr/share/quilt/compat || die
37
38 # fix doc installation; want compressed docs
39 rm -rf ${BINDIR}/usr/share/doc/${PNAME}-${PVER} || die
40 minstalldocs AUTHORS COPYING TODO quilt.changes || die
41 minstalldocs doc/README doc/README.MAIL doc/quilt.pdf || die
42 }