aboutsummaryrefslogtreecommitdiffstats
path: root/devel/dulwich/Makefile
blob: bec7157990d58cbf33ab10235ff81277c7c60148 (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
# Ports collection makefile for:    dulwich
# Date created:     2009-10-24
# Whom:         Marco Broeder <marco.broeder@gmx.eu>
#
# $FreeBSD$
#

PORTNAME=   dulwich
PORTVERSION=    0.8.3
CATEGORIES= devel python
MASTER_SITES=   http://samba.org/~jelmer/${PORTNAME}/ \
        http://launchpad.net/${PORTNAME}/trunk/${PORTVERSION}/+download/
PKGNAMEPREFIX=  ${PYTHON_PKGNAMEPREFIX}

MAINTAINER= marco.broeder@gmx.eu
COMMENT=    Pure-Python implementation of the Git file formats and protocols

LICENSE=    GPLv2 GPLv3
LICENSE_COMB=   dual

MAKE_JOBS_SAFE= yes

USE_PYTHON= yes
USE_PYDISTUTILS=yes

FETCH_ARGS= -Fpr    # default '-AFpr' prevents 302 redirects by launchpad

.ifndef (NOPORTDOCS)
PORTDOCS=   AUTHORS COPYING HACKING NEWS README
.endif

post-patch:
    ${REINPLACE_CMD} -e 's|PYTHON = python|PYTHON = /usr/bin/env python|g' \
        ${WRKSRC}/Makefile
    ${REINPLACE_CMD} -e 's|/usr/bin/python|/usr/bin/env python|g' \
        ${WRKSRC}/setup.py

post-install:
.ifndef (NOPORTDOCS)
    ${MKDIR} ${DOCSDIR}
.for i in ${PORTDOCS}
    cd ${WRKSRC} && ${INSTALL_DATA} ${i} ${DOCSDIR}
.endfor
.endif

.include <bsd.port.mk>