75073fa65e
a bug fix. Set LICENSE. Diffuse 0.3.3 - 2009-04-13 - fixed a bug handling the backspace key with the cursor in the first column Diffuse 0.3.2 - 2009-04-13 - POSIX installer with '--destdir=' and '--files-only' options for packagers - vi-like keybindings for line mode - '-m' option to open modified files in separate tabs - 'Merge From Left Then Right' and 'Merge From Right Then Left' menu items - drag-n-drop support - preferences for behaviour of tabs - files with edits now tagged with '*' - auto indent - 'Open File In New Tab...' and 'Open Modified Files...' menu items - 'Save All' menu item - mac-style line ending support - new end of line display behaviour - improved organisation of menu items - button bar no longer grabs keyboard focus - removed dependence on urllib module - errors are now reported on stderr - removed TODO list - minor bug fixes
40 lines
1.1 KiB
Makefile
40 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.8 2009/04/16 22:43:30 wiz Exp $
|
|
#
|
|
|
|
DISTNAME= diffuse-0.3.3
|
|
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
|
|
USE_DIRS= xdg-1.4 gnome2-1.6
|
|
|
|
CONF_FILES+= ${PREFIX}/share/examples/diffuse/diffuserc \
|
|
${PKG_SYSCONFDIR}/diffuserc
|
|
|
|
PYTHON_VERSIONS_ACCEPTED= 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"
|