Ticket #38982: Portfile

File Portfile, 1.2 KB (added by jds6p6h02@…, 11 years ago)
Line 
1# $Id:$
2
3PortSystem          1.0
4
5name                gptfdisk
6version             0.8.6
7revision            0
8categories          sysutils
9platforms           darwin
10maintainers         sneakemail.com:jds6p6h02
11license             GPL-2
12description         GPT fdisk is a disk partitioning tool.
13long_description \
14   GPT fdisk is a disk partitioning tool used for modifying GUID Partition \
15   Table (GPT) disks. The related FixParts utility fixes some common problems \
16   on Master Boot Record (MBR) disks.
17
18homepage            http://gptfdisk.sourceforge.net/
19master_sites        sourceforge:project/gptfdisk/files/gptfdisk/${version}
20
21checksums           rmd160  4cfe7146b91e8c3807ce6f0b3069b9e8478655e0 \
22                    sha256  4579cd54842459699970e24720dda7fb0aa217027818623089c321bc62a647b2
23
24use_configure       no
25
26destroot {
27   xinstall -m 755 -W ${worksrcpath} gdisk cgdisk sgdisk fixparts \
28       ${destroot}${prefix}/sbin
29   xinstall -d ${destroot}${prefix}/share/doc/${name}
30   xinstall -m 644 -W ${worksrcpath} COPYING NEWS README \
31       ${destroot}${prefix}/share/doc/${name}
32   eval xinstall -m 644 [glob ${worksrcpath}/*.8] \
33       ${destroot}${prefix}/share/man/man8
34}
35
36depends_lib port:icu port:ossp-uuid port:ncurses port:popt