Magellan Linux

Contents of /smage/trunk/core/cmake/cmake-2.8.12.2-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 5538 - (show annotations) (download)
Thu Mar 27 14:57:26 2014 UTC (10 years, 2 months ago) by niro
File size: 1171 byte(s)
auto added: ver bump to 2.8.12.2-r1
1 # $Id$
2
3 PNAME="cmake"
4 PVER="2.8.12.2"
5 PBUILD="r1"
6
7 PCAT="dev-util"
8
9 DESCRIPTION="cmake is a cross-platform open-source make system."
10 HOMEPAGE="http://www.cmake.org/"
11
12 DEPEND=">= sys-libs/libstdc++-4.8
13 >= sys-libs/ncurses-5.9
14 >= net-misc/curl-7
15 >= dev-libs/expat-2
16 >= dev-libs/libxml2-2.7
17 >= dev-libs/xmlrpc-c-1.16.35"
18
19 SRCFILE="${PNAME}-${PVER}.tar.gz"
20 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
21
22 sminclude mbuild alx
23 msetfeature "!check"
24
25 SRC_URI=(
26 http://www.cmake.org/files/v${PVER%.*}/${SRCFILE}
27 http://www.cmake.org/files/v${PVER%.*.*}/${SRCFILE}
28 mirror://${PNAME}/${SRCFILE}
29 mirror://${PNAME}/${PNAME}-2.8.12.1-freetype252.patch
30 )
31
32 UP2DATE="updatecmd ${HOMEPAGE}/${PNAME}/resources/software.html | grep 'Latest Release' | sed 's/.*(\(.*\)).*/\1/'"
33
34 src_prepare()
35 {
36 munpack ${SRCFILE} || die
37 cd ${SRCDIR}
38
39 # fix cmake module to detect >=freetype-2.5.2
40 mpatch ${PNAME}-2.8.12.1-freetype252.patch || die
41 }
42
43
44 src_compile()
45 {
46 cd ${SRCDIR}
47
48 ./bootstrap \
49 --prefix=/usr \
50 --docdir=/share/doc/${PNAME}-${PVER} \
51 --datadir=/share/${PNAME} \
52 --mandir=/share/man \
53 --system-libs \
54 --no-system-bzip2 \
55 --no-system-libarchive \
56 || die
57
58 mmake || die
59 }