gugus

Untitled

Aug 21st, 2012
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.28 KB | None | 0 0
  1. [root@laptop]~#pkg info -R p5-XML-SAX-Expat
  2. ---
  3. name: p5-XML-SAX-Expat
  4. version: 0.40_1
  5. origin: textproc/p5-XML-SAX-Expat
  6. comment: Simple API for XML
  7. arch: freebsd:9:x86:64
  8. www: http://search.cpan.org/dist/XML-SAX-Expat/
  9. maintainer: [email protected]
  10. prefix: /usr/local
  11. licenselogic: single
  12. flatsize: 22729
  13. desc: |-
  14. XML::SAX consists of several framework classes for using and building Perl SAX2
  15. XML parsers, filters, and drivers. It is designed around the need to be able
  16. to "plug in" different SAX parsers to an application without requiring
  17. programmer intervention. Those of you familiar with the DBI will be right at
  18. home. Some of the designs come from the Java JAXP specification (SAX part),
  19. only without the javaness.
  20.  
  21. WWW: http://search.cpan.org/dist/XML-SAX-Expat/
  22. deps:
  23. expat: {origin: textproc/expat2, version: 2.0.1_2}
  24. p5-XML-NamespaceSupport: {origin: textproc/p5-XML-NamespaceSupport, version: 1.11}
  25. p5-XML-Parser: {origin: textproc/p5-XML-Parser, version: 2.41}
  26. p5-XML-SAX-Base: {origin: textproc/p5-XML-SAX-Base, version: 1.08}
  27. p5-XML-SAX: {origin: textproc/p5-XML-SAX, version: 0.99}
  28. perl: {origin: lang/perl5.14, version: 5.14.2_2}
  29. categories: [textproc, perl5]
  30. files:
  31. /usr/local/lib/perl5/5.14.2/man/man3/XML::SAX::Expat.3.gz: 7b00b73eb75adf1911283eba5c02443f9088df3eccf42f21c0e4a9a5ffeab884
  32. /usr/local/lib/perl5/site_perl/5.14.2/XML/SAX/Expat.pm: 3817f2c491f4521ee54e0b8b3b0aa088bedbc03dcada60a6bef6a66b697cc8cf
  33. /usr/local/lib/perl5/site_perl/5.14.2/mach/auto/XML/SAX/Expat/.packlist: 31aeb1d23b92c72c40548f962d2872430113548b405e61bf19028f81c4a118be
  34. directories:
  35. /usr/local/lib/perl5/site_perl/5.14.2/mach/auto/XML/SAX/Expat/: n
  36. /usr/local/lib/perl5/site_perl/5.14.2/mach/auto/XML/SAX/: y
  37. /usr/local/lib/perl5/site_perl/5.14.2/mach/auto/XML/: y
  38. /usr/local/lib/perl5/site_perl/5.14.2/XML/SAX/: y
  39. /usr/local/lib/perl5/site_perl/5.14.2/XML/: y
  40. scripts:
  41. install: |
  42. #!/bin/sh
  43.  
  44. case $1 in
  45. POST-INSTALL)
  46. perl -MXML::SAX -e 'XML::SAX->add_parser(q(XML::SAX::Expat))->save_parsers();'
  47. ;;
  48. esac
  49. deinstall: |
  50. #!/bin/sh
  51.  
  52. case $1 in
  53. POST-DEINSTALL)
  54. perl -MXML::SAX -e 'XML::SAX->remove_parser(q(XML::SAX::Expat))->save_parsers();'
  55. ;;
  56. esac
  57.  
  58. [root@laptop]~#
Advertisement
Add Comment
Please, Sign In to add comment