mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
e59c88cece
(via Mk/bsd.default-versions.mk and lang/gcc) which has moved from GCC 5.4 to GCC 6.4 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++11-lang, c++14-lang, c++0x, c11, or gcc-c++11-lib. PR: 219275
46 lines
973 B
Makefile
46 lines
973 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= simple-mtpfs
|
|
DISTVERSIONPREFIX= ${PORTNAME}-
|
|
DISTVERSION= 0.3.0
|
|
PORTREVISION= 2
|
|
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>
|