Magellan Linux

Annotation of /smage/trunk/core/libxml2/libxml2-2.7.8-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 892 - (hide annotations) (download)
Tue Dec 7 20:13:27 2010 UTC (13 years, 5 months ago) by niro
File size: 973 byte(s)
auto added: ver bump to 2.7.8-r1
1 niro 892 # $Id: libxml2-2.7.6-r1.smage2 3181 2009-10-14 10:55:47Z niro $
2    
3     PNAME="libxml2"
4     PVER="2.7.8"
5     PBUILD="r1"
6    
7     PCATEGORIE="dev-libs"
8     STATE="unstable"
9    
10     DESCRIPTION="Libxml2 is the XML C parser and toolkit developed for the Gnome project."
11     HOMEPAGE="http://xmlsoft.org/"
12    
13     DEPEND=">= sys-libs/zlib-1.2.5"
14    
15     SRCFILE="${PNAME}-${PVER}.tar.gz"
16     SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
17    
18     sminclude python multilib
19    
20     SRC_URI=(
21     ftp://xmlsoft.org/${PNAME}/${SRCFILE}
22     mirror://${PNAME}/${SRCFILE}
23     )
24    
25     UP2DATE="updatecmd ftp://xmlsoft.org/${PNAME} | grep LATEST_$(echo ${PNAME} | tr [:lower:] [:upper:])_IS | sed -n 's/.*_\([0-9].*\)/\1/g;$ p'"
26    
27     src_compile()
28     {
29     mconfigure --with-zlib --without-python || die
30     mmake || die
31     }
32    
33     postinstall()
34     {
35     # create needed xml-catalog
36     CATALOG=${MROOT}/etc/xml/catalog
37     if [ ! -e ${CATALOG} ]
38     then
39     [ -d ${MROOT}/etc/xml ] || install -d ${MROOT}/etc/xml
40     ${MROOT}/usr/bin/xmlcatalog --create > ${CATALOG}
41     echo "Created XML catalog in ${CATALOG}"
42     fi
43     }