View | Details | Raw Unified | Return to bug 208777 | Differences between
and this patch

Collapse All | Expand All

(-)cdls/Makefile (-12 / +4 lines)
Lines 1-27 Link Here
1
# Created by: Hans de Hartog <hans@dehartog.nl>
1
# Created by: Hans de Hartog
2
# $FreeBSD: head/sysutils/cdls/Makefile 386311 2015-05-14 10:14:48Z riggs $
2
# $FreeBSD: head/sysutils/cdls/Makefile 386311 2015-05-14 10:14:48Z riggs $
3
3
4
PORTNAME=	cdls
4
PORTNAME=	cdls
5
PORTVERSION=	4.2
5
PORTVERSION=	4.2
6
CATEGORIES=	sysutils
6
CATEGORIES=	sysutils
7
MASTER_SITES=	ftp://zml12.dyndns.org/ \
7
MASTER_SITES=	ftp://freebsd4ever.xs4all.nl/ ftp://vps337.directvps.nl/
8
		ftp://vps337.directvps.nl/
9
8
10
MAINTAINER=	hans@dehartog.nl
9
MAINTAINER=	hansdehartog@xs4all.nl
11
COMMENT=	Curses based file manager for system managers
10
COMMENT=	Curses based file manager for system managers
12
11
13
PLIST_FILES=	bin/cdls
12
PLIST_FILES=	bin/cdls
14
13
15
USES=		ncurses
14
USES=		ncurses
16
15
17
.include <bsd.port.pre.mk>
18
19
.if ${NCURSESBASE} == /usr
20
# no need to use ncurses-config if we use ncurses from the base system
21
CONFIGURE_ARGS+=	NCURSES_CONFIG=/usr/bin/true
22
.endif
23
24
do-install:
16
do-install:
25
	${INSTALL_PROGRAM} ${WRKSRC}/cdls ${STAGEDIR}${PREFIX}/bin
17
	${INSTALL_PROGRAM} ${WRKSRC}/cdls ${STAGEDIR}${PREFIX}/bin
26
18
27
.include <bsd.port.post.mk>
19
.include <bsd.port.mk>
(-)cdls/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (cdls-4.2.tar.gz) = cf184152823fd1102cdbca8f572d69eca2e582e14ca9bcc46134a2584a8e02fe
1
SHA256 (cdls-4.2.tar.gz) = b018435d0993f7004839820221a2a43d58c10f944ea3534610dc6855b665af5e
2
SIZE (cdls-4.2.tar.gz) = 23751
2
SIZE (cdls-4.2.tar.gz) = 23570
(-)cdls/files/patch-Makefile (-9 lines)
Lines 1-9 Link Here
1
--- Makefile.orig	2012-04-13 16:42:46 UTC
2
+++ Makefile
3
@@ -1,5 +1,5 @@
4
 all:
5
-	cc -O2 -Wall -o cdls cdls.c -lncurses
6
+	${CC} -O2 -Wall -o cdls cdls.c ${LDFLAGS} -lncurses
7
 install:
8
 	install -o root -g wheel cdls /usr/local/bin/cdls
9
 clean:

Return to bug 208777