Magellan Linux

Annotation of /branches/R11-unstable/core/reiserfsprogs/reiserfsprogs-3.6.27-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 32105 - (hide annotations) (download)
Mon Apr 29 11:38:56 2019 UTC (5 years ago) by niro
File size: 932 byte(s)
-release branches/R11-unstable
1 niro 29689 # $Id$
2    
3     PNAME="reiserfsprogs"
4     PVER="3.6.27"
5     PBUILD="r1"
6    
7     PCAT="sys-fs"
8    
9     DESCRIPTION="User-level tools for ReiserFS filesystems."
10     HOMEPAGE="http://www.namesys.com/"
11    
12     DEPEND=">= virtual/glibc
13     >= sys-libs/libuuid-2.29"
14    
15     SRCFILE="${PNAME}-${PVER}.tar.xz"
16     SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
17    
18     sminclude mbuild mtools
19    
20     SRC_URI=(
21     https://www.kernel.org/pub/linux/kernel/people/jeffm/${PNAME}/v${PVER}/${SRCFILE}
22     mirror://${PNAME}/${SRCFILE}
23     )
24    
25     UP2DATE="updatecmd https://www.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/ | grep '/v[0-9]' | sed 's:.*v\(.*\)/.*:\1:' | upsort_pipe"
26    
27     src_prepare()
28     {
29     munpack ${SRCFILE} || die
30     cd ${SRCDIR}
31     # add missing install.sh
32     mautoreconf || die
33     }
34    
35     src_install()
36     {
37     cd ${SRCDIR}
38     mmake DESTDIR=${BINDIR} install || die
39     mlink reiserfsck /usr/sbin/fsck.reiserfs || die
40     mlink mkreiserfs /usr/sbin/mkfs.reiserfs || die
41     minstalldocs AUTHORS ChangeLog COPYING CREDITS NEWS README || die
42     }