blob: 9af52bc9c0bc26a9164ce3ac84d4d9099c2ea2d1 (
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
|
# $NetBSD: Makefile,v 1.1 2015/12/27 15:43:59 wiz Exp $
DISTNAME= diffoscope-44
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= sysutils
MASTER_SITES= ${MASTER_SITE_PYPI:=d/diffoscope/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://diffoscope.org/
COMMENT= In-depth comparison of files, archives, and directories
LICENSE= gnu-gpl-v3
DEPENDS+= ${PYPKGPREFIX}-libarchive-c-[0-9]*:../../archivers/py-libarchive-c
DEPENDS+= ${PYPKGPREFIX}-magic-[0-9]*:../../sysutils/py-magic
DEPENDS+= ${PYPKGPREFIX}-tlsh-[0-9]*:../../devel/py-tlsh
# for xxd
DEPENDS+= vim-[0-9]*:../../editors/vim
USE_TOOLS+= gtar:run xz:run bzip2:run
USE_LANGUAGES= # none
SUBST_CLASSES+= gtar
SUBST_SED.gtar+= -e "s,'tar,'gtar,"
SUBST_FILES.gtar+= diffoscope/comparators/tar.py tests/comparators/test_utils.py
SUBST_MESSAGE.gtar= Fix path to gtar.
SUBST_STAGE.gtar= post-configure
PYTHON_VERSIONS_INCOMPATIBLE= 27
PLIST_SUBST+= PYVERSSUFFIX=${PYVERSSUFFIX}
FILES_SUBST+= PYVERSSUFFIX=${PYVERSSUFFIX}
post-install:
cd ${DESTDIR}${PREFIX}/bin && \
${MV} diffoscope diffoscope-${PYVERSSUFFIX}
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"
|