Magellan Linux

Annotation of /branches/R11-stable/extras/quilt/quilt-0.63-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 21838 - (hide annotations) (download)
Mon Jul 21 09:58:06 2014 UTC (9 years, 10 months ago) by niro
File size: 1004 byte(s)
-release branches/R11-stable
1 niro 21556 # $Id$
2    
3     PNAME="quilt"
4     PVER="0.63"
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     }