56 lines
1.2 KiB
Makefile
56 lines
1.2 KiB
Makefile
# $OpenBSD: Makefile,v 1.48 2013/03/11 11:23:57 espie Exp $
|
|
|
|
COMMENT= free Norton Commander clone with many useful features
|
|
|
|
DISTNAME= mc-4.8.1.7
|
|
CATEGORIES= misc
|
|
|
|
HOMEPAGE= http://www.midnight-commander.org/
|
|
MASTER_SITES= ${HOMEPAGE}downloads/
|
|
MAINTAINER= Robert Nagy <robert@openbsd.org>
|
|
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
WANTLIB += c m pcre pthread termcap glib-2.0 gmodule-2.0 slang
|
|
|
|
USE_GMAKE= Yes
|
|
USE_GROFF= Yes
|
|
|
|
FLAVORS= no_x11
|
|
FLAVOR?=
|
|
|
|
.if ${FLAVOR:Mno_x11}
|
|
CONFIGURE_ARGS+= --without-x
|
|
.endif
|
|
|
|
MODULES= devel/gettext
|
|
|
|
LIB_DEPENDS= devel/glib2 \
|
|
devel/libslang
|
|
RUN_DEPENDS= archivers/unzip \
|
|
archivers/zip
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS+= --with-confdir=${SYSCONFDIR}/mc \
|
|
--with-screeen=slang \
|
|
--with-subshell \
|
|
--with-vfs \
|
|
--with-samba \
|
|
--enable-charset
|
|
CONFIGURE_ENV= LOCALBASE=${LOCALBASE} \
|
|
LIBS="-lm"
|
|
MODGNU_CONFIG_GUESS_DIRS=${WRKSRC}/config
|
|
|
|
post-install:
|
|
@mv ${WRKINST}${SYSCONFDIR}/mc ${PREFIX}/share/examples
|
|
@chown -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/examples/mc
|
|
@find ${PREFIX}/share/examples/mc -type f | \
|
|
xargs chmod ${SHAREMODE}
|
|
@find ${PREFIX}/share/examples/mc -type d | \
|
|
xargs chmod ${DIRMODE}
|
|
|
|
.include <bsd.port.mk>
|