public
Description: Git mirror of the MacPorts svn repo
Homepage: http://www.macports.org
Clone URL: git://github.com/kballard/macports.git
Search Repo:
Michael Maibaum (author)
Mon Oct 11 14:31:19 -0700 2004
commit  17b111ea7a21c52f4a810e7d985a3df55a27f263
tree    57dc42e00d0e7e5b470b7b86567a7f905cb37fe6
parent  ed6efc3353c71b767674bd6aab15a3f4a458ffb6
macports / dports / textproc / docbook-xsl / Portfile
100644 34 lines (30 sloc) 1.113 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: Portfile,v 1.13 2004/10/11 21:31:19 michaelm Exp $
 
PortSystem 1.0
 
name     docbook-xsl
version    1.66.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 ca82185909e0b3e51c91070b36200027
use_configure   no
build    {}
 
set dirs_to_install  "common eclipse extensions fo html htmlhelp images \
          javahelp lib manpages params profiling template tools \
          xhtml"
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}
  }
}