Magellan Linux

Annotation of /branches/magellan-next/core/libxml2/libxml2-2.7.8-r4.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 8674 - (hide annotations) (download)
Wed Jul 27 18:36:33 2011 UTC (12 years, 9 months ago) by niro
File size: 966 byte(s)
-rebuild against fixed python
1 niro 8674 # $Id$
2    
3     PNAME="libxml2"
4     PVER="2.7.8"
5     PBUILD="r4"
6    
7     PCATEGORIE="dev-libs"
8    
9     DESCRIPTION="Libxml2 is the XML C parser and toolkit developed for the Gnome project."
10     HOMEPAGE="http://xmlsoft.org/"
11    
12     DEPEND=">= sys-libs/zlib-1.2.5"
13     SDEPEND=">= dev-lang/python-2.7"
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 --with-python=/usr/bin/python$(get_python_version) || 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     }