blob: 5f39d14d1cf5502837b29404a8b951b15e326c5d (
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
|
# New ports collection makefile for: meld
# Date created: 2003-04-13
# Whom: Pav Lucistnik <pav@oook.cz>
#
# $FreeBSD$
#
PORTNAME= meld
PORTVERSION= 1.2.1
CATEGORIES= textproc devel python
MASTER_SITES= GNOME
MAINTAINER= ports@FreeBSD.org
COMMENT= GNOME 2 visual diff and merge tool
OPTIONS= PYGNOMEDESKTOP "Code syntax hilighting (many dependencies)" off
USE_BZIP2= yes
USE_GNOME= pygnome2
USE_PYTHON= yes
USE_GETTEXT= yes
USE_GMAKE= yes
MAKEFILE= GNUmakefile
MAKE_ARGS= prefix=${PREFIX}
INSTALLS_ICONS= yes
INSTALLS_OMF= yes
post-patch:
@${FIND} ${WRKSRC} -name "${MAKEFILE}" | ${XARGS} ${REINPLACE_CMD} -e \
's|$$(localstatedir)/lib/scrollkeeper|/var/db/scrollkeeper|g'
.include <bsd.port.pre.mk>
.if defined(WITH_PYGNOMEDESKTOP)
USE_GNOME+= pygnomedesktop
.endif
.include <bsd.port.post.mk>
|