blob: 0197dbc37383c51ea58c2602f89a9435cdc232a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# $NetBSD: Makefile,v 1.61 2005/08/04 10:32:01 rillig Exp $
DISTNAME= mc-4.6.1
CATEGORIES= sysutils
MASTER_SITES= http://www.ibiblio.org/pub/Linux/utils/file/managers/mc/ \
${MASTER_SITE_SUNSITE:=utils/file/managers/mc/}
MAINTAINER= pavel.arnost@clnet.cz
HOMEPAGE= http://www.ibiblio.org/mc/
COMMENT= User-friendly file manager and visual shell
GNU_CONFIGURE= YES
USE_PKGLOCALEDIR= YES
# see options.mk for an explanation of these options
PKG_OPTIONS_VAR= PKG_OPTIONS.mc
PKG_SUPPORTED_OPTIONS= charset edit glib12 ncurses samba slang subshell vfs x11
PKG_SUGGESTED_OPTIONS= charset edit glib12 slang subshell vfs
.include "../../mk/bsd.prefs.mk"
.include "../../mk/bsd.options.mk"
.if ${OPSYS} == "Linux"
PLIST_SRC+= ${PKGDIR}/PLIST.cons.saver
.endif
# remove dir if no extensions were installed there
post-install:
@${RMDIR} ${PREFIX}/lib/mc 2>/dev/null || ${TRUE}
# we need working e2fsprogs and gpm packages first
CONFIGURE_ARGS+= --without-ext2undel
CONFIGURE_ARGS+= --without-gpm-mouse
PLIST_SRC+= ${PKGDIR}/PLIST
.include "options.mk"
PLIST_SRC+= ${PKGDIR}/PLIST.end
.include "../../devel/gettext-lib/buildlink3.mk"
.include "../../devel/pkg-config/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|