freebsd-ports/sysutils/fusefs-simple-mtpfs/Makefile
Gerald Pfeifer 04d6f52202 Bump PORTREVISIONs for ports depending on the canonical version of GCC and
lang/gcc which have moved from GCC 4.9.4 to GCC 5.4 (at least under some
circumstances such as versions of FreeBSD or platforms).

This includes ports
 - with USE_GCC=yes or USE_GCC=any,
 - with USES=fortran,
 - using using Mk/bsd.octave.mk which in turn has USES=fortran, and
 - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++14-lang,
   c++11-lang, c++0x, c11, or gcc-c++11-lib.

PR:		216707
2017-04-01 15:23:30 +00:00

45 lines
973 B
Makefile

# $FreeBSD$
PORTNAME= simple-mtpfs
DISTVERSIONPREFIX= ${PORTNAME}-
DISTVERSION= 0.3.0
PORTREVISION= 1
CATEGORIES= sysutils
PKGNAMEPREFIX= fusefs-
MAINTAINER= jbeich@FreeBSD.org
COMMENT= Simple MTP fuse filesystem driver
LICENSE= GPLv2+
LIB_DEPENDS= libmtp.so:multimedia/libmtp
USE_GITHUB= yes
GH_ACCOUNT= phatina
USES= autoreconf compiler:c++11-lib fuse localbase pkgconfig
GNU_CONFIGURE= yes
MAKEFILE= makefile
INSTALL_TARGET= install-strip
PLIST_FILES= bin/${PORTNAME} \
man/man1/${PORTNAME}.1.gz
PORTDOCS= AUTHORS NEWS README.md
OPTIONS_DEFINE= DOCS
# XXX move to PREFIX when bug 193596 lands
.if exists(/etc/autofs)
PLIST_FILES+= /etc/autofs/special_${PORTNAME}
SUB_FILES+= special_${PORTNAME}
.endif
post-install:
(cd ${WRKSRC} && ${COPYTREE_SHARE} \
"${PORTDOCS}" ${STAGEDIR}${DOCSDIR})
.if exists(/etc/autofs)
@${MKDIR} ${STAGEDIR}/etc/autofs
${INSTALL_SCRIPT} ${WRKDIR}/special_${PORTNAME} \
${STAGEDIR}/etc/autofs
.endif
.include <bsd.port.mk>