aboutsummaryrefslogtreecommitdiff
path: root/misc/metalink-editor/Makefile
blob: fac453a5401958cf1f00b641587f57a63745dde2 (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# New ports collection makefile for:	Metalink editor
# Date created:		Sun 10 Aug 2008 10:50:59 UTC
# Whom:                 Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=	metalink
PORTVERSION=	1.2.0
PORTREVISION=	2
CATEGORIES=	misc
MASTER_SITES=	SF/${PORTNAME}s/Metalink%20Editor/${PORTVERSION}
PKGNAMESUFFIX?=	-editor
DISTNAME=	${PORTNAME}editor-${PORTVERSION}

MAINTAINER=	lioux@FreeBSD.org
COMMENT=	GUI editor to create and edit metalinks

USE_ZIP=	yes
USE_DOS2UNIX=	yes
DOS2UNIX_REGEX=	.*\.txt
NO_WRKSUBDIR=	yes
USE_PYTHON=	yes
USE_PYDISTUTILS=	yes
PYDISTUTILS_EGGINFO=	metalink_editor-${PORTVERSION}-py${PYTHON_VER}.egg-info
USE_WX=		2.6
WX_COMPS=	python

DATADIR=	${PREFIX}/share/${PORTNAME}${PKGNAMESUFFIX}

DESKTOP_ENTRIES=	"Metalink editor" \
			"GUI editor to create and edit metalinks" \
			"${DATADIR}/metalink.png" \
			"metalink_editor.py" \
			"Network;FileTransfer;" \
			true

#
# Documents to install
#
DOC_FILES=	\
		readme.txt
#
.ifndef(NOPORTDOCS)
PORTDOCS=	*
.endif

post-extract:
# Create a package to avoid namespace pollution
	@${MKDIR} ${WRKSRC}/Metalink_editor
	@${TOUCH} ${WRKSRC}/Metalink_editor/__init__.py
	@${MV} ${WRKSRC}/metalink.py ${WRKSRC}/Metalink_editor/

post-patch:
# Correct location of image files
	@${REINPLACE_CMD} -E \
		-e 's|%%DATADIR%%|${DATADIR}|' \
		${WRKSRC}/metalink_editor.py

pre-configure:
# Prepare new setup.py
	@${SED} \
		-e 's|%%PYTHON_CMD%%|${PYTHON_CMD}|' \
		-e 's|%%VERSION%%|${PORTVERSION}|' \
		${FILESDIR}/setup.py \
		> ${WRKSRC}/${PYSETUP}

post-install:
# docs
.ifndef(NOPORTDOCS)
	@${MKDIR} ${DOCSDIR}
.for file in ${DOC_FILES}
	@${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
.endif
# fix installation permissions for restritive umask(1)
	@${FIND} \
		${DATADIR} \
		${PYTHONPREFIX_SITELIBDIR}/Metalink_editor \
		-type f -exec \
		${CHMOD} ${SHAREMODE} {} \;

.include <bsd.port.mk>