---
name: twiki-GluePlugin
version: 0.0.15708
origin: www/twiki-GluePlugin
comment: Allow to format tags and arguments on multiple lines
arch: freebsd:9:x86:64
www: http://twiki.org/cgi-bin/view/Plugins/GluePlugin
maintainer: skv@FreeBSD.org
prefix: /usr/local
licenselogic: single
flatsize: 12447
desc: |
  This plugin will help you to write readable markup (TWikiMarkup, HMTL,
  ...) within TWiki by allowing tags and arguments to be formatted on
  multiple lines.  This is done by removing whitespaces surrounding tilde
  characters at the beginning of a line and recombine consecutive lines
  again.

  Author: Michael Daum
  WWW: http://twiki.org/cgi-bin/view/Plugins/GluePlugin
categories: [www]
files:
  /usr/local/share/twiki/GluePlugin/data/TWiki/GluePlugin.txt: 48b951fe44fb46518a4265b5ee823f2735f7f81389d8684763b3675d36487125
  /usr/local/share/twiki/GluePlugin/lib/TWiki/Plugins/GluePlugin.pm: 26233a6a27ba10cf633a7b35ed620749ea1315a749d58afd63144b80077c8616
  /usr/local/share/twiki/GluePlugin/lib/TWiki/Plugins/GluePlugin/DEPENDENCIES: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
  /usr/local/share/twiki/GluePlugin/lib/TWiki/Plugins/GluePlugin/MANIFEST: 1b4f2f689e8d95e48613e78551570bc6ba81f09f42094e8f09fcf05f12209280
  /usr/local/share/twiki/GluePlugin/lib/TWiki/Plugins/GluePlugin/build.pl: a3288a4cf0de04b57cfefae33c423a9c2dfb644187e874e2ad5746806efc3b91
  /usr/local/share/twiki/GluePlugin/pub/TWiki/GluePlugin/wikiringlogo40x40.png: c7615dbf1b34da5bf9ee8e4d35560684bb17be7d5f066c1e376ace91a2090988
directories:
  /usr/local/share/twiki/GluePlugin/pub/TWiki/GluePlugin/: n
  /usr/local/share/twiki/GluePlugin/pub/TWiki/: n
  /usr/local/share/twiki/GluePlugin/pub/: n
  /usr/local/share/twiki/GluePlugin/lib/TWiki/Plugins/GluePlugin/: n
  /usr/local/share/twiki/GluePlugin/lib/TWiki/Plugins/: n
  /usr/local/share/twiki/GluePlugin/lib/TWiki/: n
  /usr/local/share/twiki/GluePlugin/lib/: n
  /usr/local/share/twiki/GluePlugin/data/TWiki/: n
  /usr/local/share/twiki/GluePlugin/data/: n
  /usr/local/share/twiki/GluePlugin/: 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/GluePlugin\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/GluePlugin\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"
