Magellan Linux

Contents of /branches/R11-unstable/extras/tla/tla-1.3.5-r3.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 25827 - (show annotations) (download)
Tue Nov 25 04:21:29 2014 UTC (9 years, 5 months ago) by niro
File size: 1125 byte(s)
-release branches/R11-unstable
1 # $Id$
2
3 PNAME="tla"
4 PVER="1.3.5"
5 PBUILD="r3"
6
7 PCAT="dev-util"
8
9 DESCRIPTION="GNU arch is a revision control system, similar in purpose to tools such as CVS, SCCS, and Subversion."
10 HOMEPAGE="http://savannah.gnu.org/projects/gnu-arch/"
11
12 DEPEND=">= sys-apps/coreutils-8.12
13 >= sys-apps/diffutils-23
14 >= sys-dev/patch-2.6
15 >= sys-apps/findutils-4.4
16 >= sys-apps/gawk-3.1
17 >= sys-apps/tar-1.26
18 >= sys-apps/util-linux-2.19
19 >= sys-apps/debianutils-2.30
20 >= sys-dev/make-3.82"
21
22 SRCFILE="${PNAME}-${PVER}.tar.gz"
23 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
24
25 sminclude mtools
26
27 SRC_URI=(
28 gnu://gnu-arch/${SRCFILE}
29 mirror://${PNAME}/${SRCFILE}
30 )
31
32 UP2TARBALL="tla"
33 UP2DATE="updatecmd_gnu gnu-arch gz"
34
35 src_prepare()
36 {
37 munpack ${SRCFILE} || die
38 install -d ${SRCDIR}/build || die
39 }
40
41 src_compile()
42 {
43
44 cd ${SRCDIR}/build
45 ../src/configure --prefix=/usr --with-posix-shell=/bin/bash || die
46 mmake -j1 || die
47 }
48
49 src_install()
50 {
51 cd ${SRCDIR}/build
52 make prefix=${BINDIR}/usr install || die
53 minstallexec ../src/tla/\=gpg-check.awk /usr/bin/tla-gpg-check.awk || die
54
55 cd ${SRCDIR}
56 minstalldocs AUTHORS README src/ChangeLog src/COPYING || die
57 }