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 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name symlinks |
---|
7 | version 1.4 |
---|
8 | categories sysutils |
---|
9 | license Permissive |
---|
10 | platforms darwin |
---|
11 | maintainers alum.wpi.edu:arno+macports openmaintainer |
---|
12 | description scan/change symbolic links |
---|
13 | |
---|
14 | long_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 | |
---|
21 | homepage http://www.freshports.org/sysutils/symlinks/ |
---|
22 | master_sites http://www.ibiblio.org/pub/Linux/utils/file/ \ |
---|
23 | ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/ |
---|
24 | |
---|
25 | checksums rmd160 7ccfe8f489b7e2b6d9dff7c5740f3b67be421903 \ |
---|
26 | sha256 b0bb689dd0a2c46d9a7dd111b053707aba7b9cf29c4f0bad32984b14bdbe0399 |
---|
27 | |
---|
28 | patchfiles patch-symlinks.c.diff \ |
---|
29 | patch-Makefile.diff |
---|
30 | |
---|
31 | use_configure no |
---|
32 | universal_variant no |
---|
33 | |
---|
34 | pre-build { |
---|
35 | reinplace "s|/usr/local|${destroot}${prefix}|g" ${worksrcpath}/Makefile |
---|
36 | } |
---|