Magellan Linux

Annotation of /trunk/core/tar/tar-1.31-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 31976 - (hide annotations) (download)
Mon Jan 28 15:27:29 2019 UTC (5 years, 3 months ago) by niro
File size: 609 byte(s)
auto added: ver bump to 1.31-r1
1 niro 31975 # $Id$
2    
3     PNAME="tar"
4     PVER="1.31"
5     PBUILD="r1"
6    
7     PCAT="sys-apps"
8    
9     DESCRIPTION="Use this to try make tarballs."
10     HOMEPAGE="http://www.gnu.org/software/tar/"
11    
12     DEPEND=">= app-arch/gzip-1.4
13     >= app-arch/bzip2-1"
14    
15     PROVIDE="virtual/tar"
16    
17     SRCFILE="${PNAME}-${PVER}.tar.bz2"
18     SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
19    
20     sminclude mbuild
21    
22     SRC_URI=(
23     gnu://${PNAME}/${SRCFILE}
24     mirror://${PNAME}/${SRCFILE}
25     )
26    
27     UP2DATE="updatecmd_gnu ${PNAME}"
28    
29     src_compile()
30     {
31     cd ${SRCDIR}
32    
33     # allow configure as root
34     FORCE_UNSAFE_CONFIGURE=1 \
35     mconfigure \
36     --disable-dependency-tracking \
37     --libexecdir=/usr/bin \
38     || die
39    
40     mmake || die
41     }