301ec80675
from ChangeLog: - Lots of patches from Daniel for various things.. - Martin Robinson sent a patch for find dialog where it keeps the last search term, I'll improve this later on. - Agh! the typo that made the minimum font size not stick was back! fixed again. Thanks to Daniel for finding out. - Add a wrapper for all gtk_moz_embed_load_url() --> _skipstone_load_url() for skipstone internal use only and it adds a grab_focus on the embedding widget to help Daniel out on his upcoming kiosk mode patch. - Patch from Devik to fix --enable-cvs-mozilla and fix compilation on mozilla 1.0rc3 - Patch from Daniel for fixing minor leaks when config files don't exist. - Added an Up button plugin, must place an up.xpm inside your theme directory or it won't display a pixmap
24 lines
662 B
Makefile
24 lines
662 B
Makefile
# $NetBSD: Makefile,v 1.14 2002/07/06 01:33:43 taya Exp $
|
|
|
|
DISTNAME= skipstone-0.8.3
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://www.muhri.net/skipstone/
|
|
|
|
MAINTAINER= packages@netbsd.org
|
|
HOMEPAGE= http://www.muhri.net/skipstone/
|
|
COMMENT= GTK+ web browser that embeds Mozilla's renderer
|
|
|
|
DEPENDS+= mozilla>=1.0:../../www/mozilla
|
|
|
|
EVAL_PREFIX+= MOZ_DIR=mozilla
|
|
MOZ_INCDIR= ${MOZ_DIR}/include/mozilla
|
|
MOZ_LIBDIR= ${MOZ_DIR}/lib/mozilla
|
|
USE_GMAKE= yes
|
|
USE_X11BASE= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --prefix=${PREFIX} \
|
|
--with-mozilla-includes=${MOZ_INCDIR} \
|
|
--with-mozilla-libs=${MOZ_LIBDIR}
|
|
LDFLAGS+= -Wl,-R${MOZ_LIBDIR}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|