public
Description: Git mirror of the MacPorts svn repo
Homepage: http://www.macports.org
Clone URL: git://github.com/kballard/macports.git
commit  b340529d5188c9b03b91f0bb97f0a5f4734e4bc5
tree    1460f43131d3cd9b46965ac71e70a3e6b37777d7
parent  2969f66e7596607f9fad5c3c1aba99cedbadf7b8
macports / dports / textproc / docbook-xsl / Portfile
100644 36 lines (30 sloc) 1.115 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
35
36
# $Id: Portfile,v 1.14 2004/11/30 13:59:33 michaelm Exp $
 
PortSystem 1.0
 
name     docbook-xsl
version    1.67.0
categories  textproc
description  the docbook xsl stylesheets
platforms  darwin
maintainers michaelm@opendarwin.org
master_sites  sourceforge:docbook
homepage  http://docbook.sf.net/
checksums  md5 c23b103673ff668378df655b6cdb80a5
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 WhatsNew \
    ${destroot}/${prefix}/share/doc/${name}
  file copy ${worksrcpath}/doc ${destroot}/${prefix}/share/doc/${name}
  file copy ${worksrcpath}/docsrc ${destroot}/${prefix}/share/${name}
  foreach dirname $dirs_to_install {
    file copy ${worksrcpath}/${dirname} ${destroot}/${prefix}/${instdir}
  }
}