aboutsummaryrefslogtreecommitdiffstats
path: root/sysutils/py-pytsk/Makefile
blob: 98c79a0160ad53db546d8ae7b76e441c8b27d7d7 (plain) (blame)
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
46
47
48
49
50
51
52
53
# Created by: Antoine Brodin <antoine@FreeBSD.org>
# $FreeBSD$

PORTNAME=   pytsk
DISTVERSION=    2013-12-13
CATEGORIES= sysutils security devel python
MASTER_SITES=   https://googledrive.com/host/0B3fBvzttpiiScUxsUm54cG02RDA/ \
        LOCAL/antoine
PKGNAMEPREFIX=  ${PYTHON_PKGNAMEPREFIX}
EXTRACT_SUFX=   .tgz

MAINTAINER= antoine@FreeBSD.org
COMMENT=    Python bindings for the Sleuthkit

LICENSE=    APACHE20

LIB_DEPENDS=    libtsk.so:${PORTSDIR}/sysutils/sleuthkit

WRKSRC=     ${WRKDIR}/${PORTNAME}

USES=       shebangfix
SHEBANG_FILES=  samples/*.py
python_OLD_CMD= .*
python_CMD= ${PYTHON_CMD}
USE_PYTHON= -2.7
USE_PYDISTUTILS=yes
PYDISTUTILS_AUTOPLIST=yes

post-patch:
    ${REINPLACE_CMD} -e "s|'/', 'usr', 'local'|'${LOCALBASE}'|" \
        ${WRKSRC}/setup.py

DOCSDIR=    ${PREFIX}/share/doc/py-${PORTNAME}
PORTDOCS=   README

EXAMPLESDIR=    ${PREFIX}/share/examples/py-${PORTNAME}
PORTEXAMPLES=   *

OPTIONS_DEFINE= DOCS EXAMPLES

.include <bsd.port.options.mk>

post-install:
.if ${PORT_OPTIONS:MDOCS}
    @${MKDIR} ${STAGEDIR}${DOCSDIR}
    ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
.endif
.if ${PORT_OPTIONS:MEXAMPLES}
    @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
    ${INSTALL_SCRIPT} ${WRKSRC}/samples/*.py ${STAGEDIR}${EXAMPLESDIR}
.endif

.include <bsd.port.mk>