1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name xvfb-run |
---|
6 | version 1.4.2 |
---|
7 | maintainers gmail.com:howarth.at.macports |
---|
8 | description Run x11 clients on headless machine |
---|
9 | |
---|
10 | depends_run port:getopt port:xauth port:xvfb |
---|
11 | homepage http://packages.debian.org/xvfb |
---|
12 | |
---|
13 | license BSD |
---|
14 | |
---|
15 | distfiles |
---|
16 | |
---|
17 | patchfiles xorg-server_1.4.2-10.lenny4.debian-only-changes.diff xvfb-run.diff |
---|
18 | patch.pre_args -p1 |
---|
19 | |
---|
20 | configure { |
---|
21 | } |
---|
22 | |
---|
23 | build { |
---|
24 | } |
---|
25 | |
---|
26 | destroot { |
---|
27 | xinstall -d ${destroot}${prefix}/bin |
---|
28 | xinstall -m 755 ${worksrcpath}/debian/local/xvfb-run ${destroot}${prefix}/bin |
---|
29 | xinstall -d ${destroot}${prefix}/man/man1 |
---|
30 | xinstall -m 644 ${worksrcpath}/debian/local/xvfb-run.1 ${destroot}${prefix}/man/man1 |
---|
31 | xinstall -d ${destroot}${prefix}/share/doc/${name} |
---|
32 | xinstall -m 640 ${worksrcpath}/debian/copyright ${destroot}${prefix}/share/doc/${name} |
---|
33 | } |
---|