blob: 4d33d7a9855fc6e955f6b92247bd453939ce9222 (
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
44
45
|
# $NetBSD: Makefile,v 1.10 2014/05/09 07:37:05 wiz Exp $
DISTNAME= gmailfs-0.7.2
PKGREVISION= 3
PKGNAME= fuse-${DISTNAME}
CATEGORIES= filesystems
MASTER_SITES= http://richard.jones.name/google-hacks/gmail-filesystem/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://richard.jones.name/google-hacks/gmail-filesystem/gmail-filesystem.html
COMMENT= FUSE filesystem which uses Google mail for free space
NO_BUILD= yes
REPLACE_PYTHON= gmailfs.py mount.gmailfs
PYTHON_VERSIONS_INCOMPATIBLE= 33 34 # py-fuse-bindings
CONF_FILES= ${PREFIX}/share/examples/gmailfs/gmailfs.conf \
${PKG_SYSCONFDIR}/gmailfs.conf
SUBST_CLASSES+= config
SUBST_STAGE.config= post-patch
SUBST_FILES.config= gmailfs.py mount.gmailfs
SUBST_SED.config= -e "s|@PKG_SYSCONFDIR@|${PKG_SYSCONFDIR}|g"
SUBST_SED.config+= -e "s|@PREFIX@|${PREFIX}|g"
SUBST_SED.config+= -e "s|@PYSITELIB@|${PREFIX}/${PYSITELIB}|g"
SUBST_MESSAGE.config= Fixing paths.
PLIST_SUBST+= PYSITELIB=${PYSITELIB:Q}
INSTALLATION_DIRS= sbin ${PYSITELIB}
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/gmailfs.py \
${DESTDIR}${PREFIX}/${PYSITELIB}/
${INSTALL_SCRIPT} ${WRKSRC}/mount.gmailfs \
${DESTDIR}${PREFIX}/sbin/mount_gmailfs
${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/examples/gmailfs
${INSTALL_DATA} ${WRKSRC}/gmailfs.conf \
${DESTDIR}${PREFIX}/share/examples/gmailfs/
.include "../../filesystems/py-fuse-bindings/buildlink3.mk"
.include "../../lang/python/application.mk"
.include "../../mk/fuse.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|