Magellan Linux

Annotation of /trunk/core/reiserfsprogs/reiserfsprogs-3.6.27-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 29689 - (hide annotations) (download)
Thu Sep 14 07:44:10 2017 UTC (6 years, 9 months ago) by niro
File size: 932 byte(s)
auto added: ver bump to 3.6.27-r1
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     }