daf6974b98
Released 2009-07-03 * syntax highlighting for .plist, GLSL, SConscript, and SConstruct files * status bar now explains how to navigate between modes * added labels to indicate syntax highlighting rules, encoding, and format * Subversion 1.6 support * added Henri Menke's German translation * added '--examplesdir=' and '--mandir=' options to install.py * renamed the '--python-interpreter=' installer option to '--pythonbin=' * minor bug fixes Add an additional post-release fix from upstream (patch-aa).
38 lines
1.1 KiB
Makefile
38 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.12 2009/08/06 21:52:07 wiz Exp $
|
|
#
|
|
|
|
DISTNAME= diffuse-0.3.4
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=diffuse/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://diffuse.sourceforge.net/
|
|
COMMENT= Graphical tool for merging and comparing text files
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
CONF_FILES+= ${PREFIX}/share/examples/diffuse/diffuserc \
|
|
${PKG_SYSCONFDIR}/diffuserc
|
|
|
|
PYTHON_VERSIONS_ACCEPTED= 26 25 24
|
|
|
|
do-build:
|
|
# nothing
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && ${PYTHONBIN} ./install.py --destdir=/${DESTDIR} \
|
|
--examplesdir=${PREFIX}/share/examples/diffuse \
|
|
--mandir=${PREFIX}/${PKGMANDIR} \
|
|
--prefix=${PREFIX} --sysconfdir=${PKG_SYSCONFDIR} \
|
|
--pythonbin=${PYTHONBIN} --files-only
|
|
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../mk/omf-scrollkeeper.mk"
|
|
BUILDLINK_API_DEPENDS.pygtk2+= ${PYPKGPREFIX}-gtk2>=2.10
|
|
.include "../../x11/py-gtk2/buildlink3.mk"
|
|
.include "../../sysutils/desktop-file-utils/desktopdb.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|