Ticket #32741: Portfile

File Portfile, 1.3 KB (added by fracai, 12 years ago)

symlinks 1.4 Portfile

Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=tcl:et:sw=4:ts=4:sts=4
2# $Id$
3
4PortSystem      1.0
5
6name            symlinks
7version         1.4
8categories      sysutils
9license         Permissive
10platforms       darwin
11maintainers     alum.wpi.edu:arno+macports openmaintainer
12description     scan/change symbolic links
13
14long_description \
15    Scans directories for symbolic links, and identifies dangling, \
16    relative, absolute, messy, and other_fs links.  Can optionally \
17    change absolute links to relative within a given filesystem. \
18    Recommended for use by anyone developing and/or maintaining \
19    a Linux FTP site or distribution or CD-ROM.
20
21homepage        http://www.freshports.org/sysutils/symlinks/
22master_sites    http://www.ibiblio.org/pub/Linux/utils/file/ \
23                ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/
24
25checksums       rmd160 7ccfe8f489b7e2b6d9dff7c5740f3b67be421903 \
26                sha256 b0bb689dd0a2c46d9a7dd111b053707aba7b9cf29c4f0bad32984b14bdbe0399
27
28patchfiles      patch-symlinks.c.diff \
29                patch-Makefile.diff
30
31use_configure       no
32universal_variant   no
33
34pre-build {
35    reinplace "s|/usr/local|${destroot}${prefix}|g" ${worksrcpath}/Makefile
36}