Use the correct pkg-config syntax
(the pkg-config that comes with the RedHat 7.0 glib-gtkbeta RPM
 and not the one from pkgconfig.sourceforge.net which is old).
diff --git a/libxml-2.0.pc.in b/libxml-2.0.pc.in
index 4330454..bb873d7 100644
--- a/libxml-2.0.pc.in
+++ b/libxml-2.0.pc.in
@@ -3,13 +3,10 @@
 libdir=@libdir@
 includedir=@includedir@
 
-VERSION="@VERSION@"
-REQUIRES=""
-CFLAGS="@XML_INCLUDEDIR@ @XML_CFLAGS@ $CFLAGS"
-LIBS_PATH="-L${libdir} $LIBS_PATH"
-LIBS_LINK_SELF="-lxml $LIBS_LINK_SELF"
-LIBS_LINK_SYSTEM="@Z_LIBS@ @M_LIBS@ @LIBS@ $LIBS_LINK_SYSTEM"
 
-
-#Name: libXML
-#Description: libXML library.
+Name: libXML
+Version: @VERSION@
+Description: libXML library.
+Requires:
+Libs: -L${libdir} -lxml @Z_LIBS@ @M_LIBS@ @LIBS@
+Cflags: @XML_INCLUDEDIR@ @XML_CFLAGS@