View | Details | Raw Unified | Return to bug 183330
Collapse All | Expand All

(-)./Makefile (-1 / +2 lines)
Lines 1-8 Link Here
1
# Created by: Jun-ichiro itojun Hagino <itojun@itojun.org>
1
# Created by: Jun-ichiro itojun Hagino <itojun@itojun.org>
2
# $FreeBSD: ports-mgmt/portlint/Makefile 331023 2013-10-20 15:01:13Z marcus $
2
# $FreeBSD: head/ports-mgmt/portlint/Makefile 331023 2013-10-20 15:01:13Z marcus $
3
3
4
PORTNAME=	portlint
4
PORTNAME=	portlint
5
PORTVERSION=	2.14.6
5
PORTVERSION=	2.14.6
6
PORTREVISION=	1
6
CATEGORIES=	ports-mgmt
7
CATEGORIES=	ports-mgmt
7
MASTER_SITES=	# none
8
MASTER_SITES=	# none
8
DISTFILES=	# none
9
DISTFILES=	# none
(-)./src/portlint.1 (-1 / +1 lines)
Lines 1-4 Link Here
1
.\" $FreeBSD: ports-mgmt/portlint/src/portlint.1 322990 2013-07-14 16:15:21Z marcus $
1
.\" $FreeBSD: head/ports-mgmt/portlint/src/portlint.1 322990 2013-07-14 16:15:21Z marcus $
2
.\"  $MCom: portlint/portlint.1,v 1.13 2013/07/07 22:34:01 marcus Exp $
2
.\"  $MCom: portlint/portlint.1,v 1.13 2013/07/07 22:34:01 marcus Exp $
3
.\"
3
.\"
4
.\" Copyright (c) 1997 by Jun-ichiro Hagino <itojun@itojun.org>.
4
.\" Copyright (c) 1997 by Jun-ichiro Hagino <itojun@itojun.org>.
(-)./src/portlint.pl (-2 / +2 lines)
Lines 16-22 Link Here
16
# This code now mainly supports FreeBSD, but patches to update support for
16
# This code now mainly supports FreeBSD, but patches to update support for
17
# OpenBSD and NetBSD will be accepted.
17
# OpenBSD and NetBSD will be accepted.
18
#
18
#
19
# $FreeBSD: ports-mgmt/portlint/src/portlint.pl 330953 2013-10-20 00:53:04Z marcus $
19
# $FreeBSD: head/ports-mgmt/portlint/src/portlint.pl 330953 2013-10-20 00:53:04Z marcus $
20
# $MCom: portlint/portlint.pl,v 1.293 2013/10/20 00:49:57 marcus Exp $
20
# $MCom: portlint/portlint.pl,v 1.293 2013/10/20 00:49:57 marcus Exp $
21
#
21
#
22
22
Lines 1115-1121 Link Here
1115
				last;
1115
				last;
1116
			}
1116
			}
1117
			if ($k =~ /^\$\{(\w+)\}$/) {
1117
			if ($k =~ /^\$\{(\w+)\}$/) {
1118
				$k = get_makvar($1);
1118
				$k = get_makevar($1);
1119
			}
1119
			}
1120
			my @l = split(':', $k);
1120
			my @l = split(':', $k);

Return to bug 183330