Magellan Linux

Contents of /branches/R11-unstable/extras/quilt/quilt-0.65-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 32450 - (show annotations) (download)
Mon Apr 29 12:54:25 2019 UTC (5 years ago) by niro
File size: 1004 byte(s)
-release branches/R11-unstable
1 # $Id$
2
3 PNAME="quilt"
4 PVER="0.65"
5 PBUILD="r1"
6
7 PCAT="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 msetfeature "!check"
22
23 SRC_URI=(
24 http://download.savannah.gnu.org/releases/${PNAME}/${SRCFILE}
25 mirror://${PNAME}/${SRCFILE}
26 )
27
28 UP2DATE="updatecmd http://download.savannah.gnu.org/releases/${PNAME}/ | lasttarball gz"
29
30 src_install()
31 {
32 cd ${SRCDIR}
33 mmake BUILD_ROOT=${BINDIR} install || die
34
35 # remove unneeded stuff
36 rm -rf ${BINDIR}/etc/bash_completion.d || die
37 rm -rf ${BINDIR}/usr/share/quilt/compat || die
38
39 # fix doc installation; want compressed docs
40 rm -rf ${BINDIR}/usr/share/doc/${PNAME}-${PVER} || die
41 minstalldocs AUTHORS COPYING TODO quilt.changes || die
42 minstalldocs doc/README doc/README.MAIL doc/quilt.pdf || die
43 }