7f48b3e215
buildling because it requirs gtk-doc. Approved by wiz@. Changes since 2.0.2: * Don't check numeric words. Combined with word breaking changes recently committed to Pango, this will handle all letter-number combinations nicely. * "Add to Dictionary" now actually adds to personal dictionary. * New "Ignore All" menuitem to add a word to the current session. * Updates of autogen.sh and conifgure.ac to use newer autoconf/automake/libtool. * Change behavior on a right click so that cutting/copying with the mouse works again. * Add deferred checking: make the misspelled word highlighting work like other apps and delay checking the current word until the cursor exits it. * gtkspell.spec.in: Typo fix. * Conditionally use Aspell if it's available, otherwise fall back to Pspell (Ramon Medina). * docs/ directory and beginning documentation added. * 2.0.3 released. * gtkspell.c: Hack around Pango wordbreaking bug (also logged with their developers at: http://bugzilla.gnome.org/show_bug.cgi?id=97545 ). * gtkspell.spec.in: RPM .spec file template. From Alex <hansolo@rochester.rr.com>. * configure.ac: Generate gtkspell.spec from gtkspell.spec.in. * README: Add Ari and Alex to a "Thanks" section. * configure.ac: Check for libpspell earlier and die if we don't find it. Prerequire autoconf 2.52. * gtkspell/Makefile.am, examples/Makefile.am: Set CFLAGS instead of foo_CFLAGS (why does the old way not work anymore?). * autogen.sh: Don't automatically run configure.
25 lines
755 B
Makefile
25 lines
755 B
Makefile
# $NetBSD: buildlink2.mk,v 1.8 2004/02/09 18:26:06 minskim Exp $
|
|
#
|
|
# This Makefile fragment is included by packages that use gtkspell.
|
|
#
|
|
|
|
.if !defined(GTKSPELL_BUILDLINK2_MK)
|
|
GTKSPELL_BUILDLINK2_MK= # defined
|
|
|
|
BUILDLINK_PACKAGES+= gtkspell
|
|
BUILDLINK_DEPENDS.gtkspell?= gtkspell>=2.0.2nb6
|
|
BUILDLINK_PKGSRCDIR.gtkspell?= ../../textproc/gtkspell
|
|
|
|
EVAL_PREFIX+= BUILDLINK_PREFIX.gtkspell=gtkspell
|
|
BUILDLINK_PREFIX.gtkspell_DEFAULT= ${LOCALBASE}
|
|
BUILDLINK_FILES.gtkspell+= include/gtkspell-2.0/gtkspell/gtkspell.h
|
|
BUILDLINK_FILES.gtkspell+= lib/libgtkspell.*
|
|
|
|
.include "../../textproc/aspell/buildlink2.mk"
|
|
.include "../../x11/gtk2/buildlink2.mk"
|
|
|
|
BUILDLINK_TARGETS+= gtkspell-buildlink
|
|
|
|
gtkspell-buildlink: _BUILDLINK_USE
|
|
|
|
.endif # GTKSPELL_BUILDLINK2_MK
|