public
Description: Git mirror of the MacPorts svn repo
Homepage: http://www.macports.org
Clone URL: git://github.com/kballard/macports.git
Elias Pipping (author)
Thu Mar 01 21:16:40 -0800 2007
commit  64f4181ace457d9166b2d3c4d65f3e4044bf492c
tree    6c6fc853d902719afc7abd8c3e7ac96936ecedab
parent  acdb3e13d22c9966b2da2b3f9f1223343cd679d8
macports / dports / textproc / docbook-xsl / Portfile
100644 34 lines (28 sloc) 0.923 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# $Id$
 
PortSystem 1.0
 
name     docbook-xsl
version    1.69.1
categories  textproc
description  the docbook xsl stylesheets
platforms  darwin
maintainers nomaintainer@macports.org
master_sites  sourceforge:docbook
homepage  http://docbook.sf.net/
checksums  md5 6f2478faea86bd55abb36ddb57291347
use_configure   no
build    {}
 
set dirs_to_install  "common eclipse extensions fo html htmlhelp images \
          javahelp lib manpages params profiling template \
          xhtml VERSION"
set instdir      "share/xsl/${name}"
 
destroot  {
  xinstall -m 755 -d ${destroot}/${prefix}/${instdir} \
    ${destroot}/${prefix}/share/doc/${name} \
    ${destroot}/${prefix}/share/${name}
  xinstall -m 644 -W ${worksrcpath} BUGS ChangeLog README \
    RELEASE-NOTES.html RELEASE-NOTES.xml TODO VERSION NEWS \
    ${destroot}/${prefix}/share/doc/${name}
  foreach dirname $dirs_to_install {
    file copy ${worksrcpath}/${dirname} ${destroot}/${prefix}/${instdir}
  }
}