---
name: twiki-EmptyPlugin
version: 0.0.16417
origin: www/twiki-EmptyPlugin
comment: Empty plugin template
arch: freebsd:9:x86:64
www: http://twiki.org/cgi-bin/view/Plugins/EmptyPlugin
maintainer: ports@FreeBSD.org
prefix: /usr/local
licenselogic: single
flatsize: 33128
desc: |
  This is an empty Plugin you can use as a template to build your own
  TWikiPlugins. This Plugin does nothing, but is ready to be used.

  Author: Andrea Sterbini, Peter Thoeny, Crawford Currie
  WWW: http://twiki.org/cgi-bin/view/Plugins/EmptyPlugin
categories: [www]
files:
  /usr/local/share/twiki/EmptyPlugin/data/Sandbox/PluginTestEmptyPlugin.txt: 9654eb3bd6fc7c031516698e6c688de829492aefdc979ac25cd588daa58a3be6
  /usr/local/share/twiki/EmptyPlugin/data/TWiki/EmptyPlugin.txt: 3738f99784903771005de25ea46cc5ac4db554c349d40f1094ec8da1d48e82ff
  /usr/local/share/twiki/EmptyPlugin/lib/TWiki/Plugins/EmptyPlugin.pm: 1fc0f1ebf276aa6a28d4e796a8b72115b9e2afb53d251e7229146880054e3519
  /usr/local/share/twiki/EmptyPlugin/lib/TWiki/Plugins/EmptyPlugin/DEPENDENCIES: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
  /usr/local/share/twiki/EmptyPlugin/lib/TWiki/Plugins/EmptyPlugin/MANIFEST: 0682f9309b59e1ee3c1ca98f8f57f589f5b57f9f48bfd650a9b2624a78e7c30b
  /usr/local/share/twiki/EmptyPlugin/lib/TWiki/Plugins/EmptyPlugin/build.pl: d616d858dd595c822a2100a9c7812b09787de85540a3e19daad80c00d8795bbd
  /usr/local/share/twiki/EmptyPlugin/test/unit/EmptyPlugin/EmptyPluginSuite.pm: e465456bb91c71e05696cc078b561c7406482fb8ca991d62b403c4da48f0cfc4
  /usr/local/share/twiki/EmptyPlugin/test/unit/EmptyPlugin/EmptyPluginTests.pm: f67443f8f5782762e6d387659ba6a3f5788ae53f4e73030c386222debaecac54
directories:
  /usr/local/share/twiki/EmptyPlugin/test/unit/EmptyPlugin/: n
  /usr/local/share/twiki/EmptyPlugin/test/unit/: n
  /usr/local/share/twiki/EmptyPlugin/test/: n
  /usr/local/share/twiki/EmptyPlugin/lib/TWiki/Plugins/EmptyPlugin/: n
  /usr/local/share/twiki/EmptyPlugin/lib/TWiki/Plugins/: n
  /usr/local/share/twiki/EmptyPlugin/lib/TWiki/: n
  /usr/local/share/twiki/EmptyPlugin/lib/: n
  /usr/local/share/twiki/EmptyPlugin/data/TWiki/: n
  /usr/local/share/twiki/EmptyPlugin/data/Sandbox/: n
  /usr/local/share/twiki/EmptyPlugin/data/: n
  /usr/local/share/twiki/EmptyPlugin/: n
  /usr/local/share/twiki/: y
scripts:
  install: "#!/bin/sh\n#\n# $FreeBSD: www/twiki/files/pkg-install.in 300897 2012-07-14
    14:29:18Z beat $\n#\n\nTWDIR=/usr/local/share/twiki/EmptyPlugin\nWWWDIR=/usr/local/www/twiki\nWWWOWN=www\nWWWGRP=www\n\ncase
    $2 in\n\tPRE-INSTALL)\n\t\t;;\n\tPOST-INSTALL)\n\t\tcd ${TWDIR}/\n\t\tfind -s
    * -type d | while read dir; do\n\t\t\tmkdir -p ${WWWDIR}/$dir/\n\t\tdone\n\t\tfind
    -s * -not -type d | while read file; do\n\t\t\tif [ -e ${WWWDIR}/$file ]; then\n\t\t\t\techo
    \"${WWWDIR}/$file exists, skipping\"\n\t\t\telse\n\t\t\t\tcp $file ${WWWDIR}/$file\n\t\t\tfi\n\t\tdone\n\t\tchown
    -R ${WWWOWN}:${WWWGRP} ${WWWDIR}/\n\t\tchmod -R u+w ${WWWDIR}/\n\t\tcd ${WWWDIR}/\n\t\tchmod
    o-rwx data lib locale templates test tools working\n\t\tchmod a+x bin/* tools/*\n\n\t\t#
    let the user know what's going on\n\t\tcat << __EOF__\n*****************************************************************\n*
    You can inspect differences (if any) between the distribition *\n* and the files
    installed using this command:                   *\n  %25 diff -ru ${TWDIR} ${WWWDIR}\n*
    For more info:                                                *\n*  http://wiki.FreeBSD.org/TWiki
    \                               *\n*  http://twiki.org/cgi-bin/view/Codev/TWikiOnFreeBSD
    \          *\n*  http://twiki.org/cgi-bin/view/TWiki/WebHome                  *\n*****************************************************************\n__EOF__\n\t\t;;\n\t*)\n\t\techo
    \"Unexpected Argument $2!!!\"\n\t\texit 1\n\t\t;;\nesac\nexit 0\n"
  deinstall: "#!/bin/sh\n#\n# $FreeBSD: /tmp/pcvs/ports/www/twiki/files/pkg-deinstall.in,v
    1.1 2008-04-22 08:36:40 sat Exp $\n#\n\nTWDIR=/usr/local/share/twiki/EmptyPlugin\nWWWDIR=/usr/local/www/twiki\n\ncase
    $2 in\n\tDEINSTALL)\n\t\tcd ${TWDIR}/\n\t\tfind -s * -not -type d | while read
    file; do\n\t\t\tif [ -e ${WWWDIR}/$file ]; then\n\t\t\t\tif cmp -s ${WWWDIR}/$file
    $file; then\n\t\t\t\t\trm -f ${WWWDIR}/$file\n\t\t\t\telse\n\t\t\t\t\techo \"${WWWDIR}/$file
    changed, skipping\"\n\t\t\t\tfi\n\t\t\telse\n\t\t\t\techo \"${WWWDIR}/$file lost\"\n\t\t\tfi\n\t\tdone\n\t\tfind
    -ds * -type d | while read dir; do\n\t\t\trmdir ${WWWDIR}/$dir/ 2>/dev/null ||
    true\n\t\tdone\n\t\trmdir ${WWWDIR}/ 2>/dev/null || true\n\t\t;;\n\tPOST-DEINSTALL)\n\t\t;;\n\t*)\n\t\techo
    \"Unexpected Argument $2!\"\n\t\texit 1\n\t\t;;\nesac\nexit 0\n"
