4f360f8e5c
Attention! - personal configuration files are now stored in ~/.config/diffuse/ (the README file describes how to migrate old settings) Diffuse 0.4.1 - 2009-10-12 - added Japanese translation - added Liu Hao's simplified Chinese translation - added a 'Dismiss All Edits' menu item - personal configuration files are now stored in ~/.config/diffuse/ (the README file describes how to migrate old settings) - localised manuals are now supported on Windows - new command line option for specifying blank file comparison panes - new preference to enable/disable line numbers - Diffuse now quits if no viewers were created with the -m option - MMB on a notebook tab now closes the tab - RMB on a notebook tab creates a popup menu to set the current page - added "Undo Close Tab" menu item - replaced "Closing last tab quits Diffuse" preference with a "Warn me when closing a tab will quit Diffuse" preference - added new menu items and buttons for copying lines between panes - changed the default hotkeys for merging to reflect the direction text "moves"
37 lines
1 KiB
Makefile
37 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.17 2009/10/19 14:33:28 wiz Exp $
|
|
#
|
|
|
|
DISTNAME= diffuse-0.4.1
|
|
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_TOOLS+= msgfmt
|
|
USE_LANGUAGES= # none
|
|
|
|
CONF_FILES+= ${PREFIX}/share/examples/diffuse/diffuserc \
|
|
${PKG_SYSCONFDIR}/diffuserc
|
|
|
|
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"
|