Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 894 - (hide annotations) (download)
Tue Dec 7 20:23:15 2010 UTC (13 years, 5 months ago) by niro
File size: 1045 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 niro 894 MCORE_ONLY_KEEP="usr/$(mlibdir)/*.so usr/$(mlibdir)/*.so.*"
19 niro 893 sminclude python multilib mcore-split
20 niro 892
21     SRC_URI=(
22     ftp://xmlsoft.org/${PNAME}/${SRCFILE}
23     mirror://${PNAME}/${SRCFILE}
24     )
25    
26     UP2DATE="updatecmd ftp://xmlsoft.org/${PNAME} | grep LATEST_$(echo ${PNAME} | tr [:lower:] [:upper:])_IS | sed -n 's/.*_\([0-9].*\)/\1/g;$ p'"
27    
28     src_compile()
29     {
30     mconfigure --with-zlib --without-python || die
31     mmake || die
32     }
33    
34     postinstall()
35     {
36     # create needed xml-catalog
37     CATALOG=${MROOT}/etc/xml/catalog
38     if [ ! -e ${CATALOG} ]
39     then
40     [ -d ${MROOT}/etc/xml ] || install -d ${MROOT}/etc/xml
41     ${MROOT}/usr/bin/xmlcatalog --create > ${CATALOG}
42     echo "Created XML catalog in ${CATALOG}"
43     fi
44     }