8530ce776d
The find-prefix infrastructure was required in a pkgviews world where packages installed from pkgsrc could have different installation prefixes, and this was a way for a dependency prefix to be determined. Now that pkgviews has been removed there is no longer any need for the overhead of this infrastructure. Instead we use BUILDLINK_PREFIX.pkg for dependencies pulled in via buildlink, or LOCALBASE/PREFIX where the dependency is coming from pkgsrc. Provides a reasonable performance win due to the reduction of `pkg_info -qp` calls, some of which were redundant anyway as they were duplicating the same information provided by BUILDLINK_PREFIX.pkg.
59 lines
1.7 KiB
Makefile
59 lines
1.7 KiB
Makefile
# $NetBSD: options.mk,v 1.14 2015/11/25 12:54:07 jperkin Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.w3m
|
|
PKG_SUPPORTED_OPTIONS= inet6 migemo w3m-lynx-key
|
|
PKG_SUGGESTED_OPTIONS= inet6
|
|
|
|
.if ${_W3M_USE_IMAGE} == "YES"
|
|
PKG_OPTIONS_REQUIRED_GROUPS+= imagelib
|
|
PKG_SUGGESTED_OPTIONS+= w3m-image-gdk-pixbuf
|
|
.else
|
|
PKG_OPTIONS_OPTIONAL_GROUPS+= imagelib
|
|
.endif
|
|
PKG_OPTIONS_GROUP.imagelib= w3m-image-gdk-pixbuf w3m-image-imlib \
|
|
w3m-image-imlib2 w3m-image-gtk2
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Minet6)
|
|
CONFIGURE_ARGS+= --enable-ipv6
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-ipv6
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mmigemo)
|
|
.include "../../lang/ruby/rubyversion.mk"
|
|
DEPENDS+= ${RUBY_PKGPREFIX}-migemo-[0-9]*:../../textproc/migemo
|
|
CONFIGURE_ARGS+= --with-migemo="${LOCALBASE}/bin/migemo -t egrep ${LOCALBASE}/share/migemo/migemo-dict"
|
|
.else
|
|
CONFIGURE_ARGS+= --without-migemo
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mw3m-lynx-key)
|
|
CONFIGURE_ARGS+= --enable-keymap=lynx
|
|
.else
|
|
CONFIGURE_ARGS+= --enable-keymap=w3m
|
|
.endif
|
|
|
|
PLIST_VARS+= image
|
|
.if !empty(PKG_OPTIONS:Mw3m-image-*)
|
|
. for _imagelib in ${PKG_OPTIONS_GROUP.imagelib}
|
|
. if !empty(PKG_OPTIONS:M${_imagelib})
|
|
_W3M_IMAGELIB= ${_imagelib:C|^w3m-image-||}
|
|
. endif
|
|
. endfor
|
|
USE_X11= YES
|
|
CONFIGURE_ARGS+= --enable-image=x11 --with-imagelib=${_W3M_IMAGELIB:Q}
|
|
PLIST.image= yes
|
|
BUILDLINK_DEPMETHOD.libXt?= build
|
|
. include "../../x11/libXt/buildlink3.mk"
|
|
. if empty(_W3M_IMAGELIB:Mgtk2)
|
|
. include "../../graphics/${_W3M_IMAGELIB}/buildlink3.mk"
|
|
. else
|
|
USE_TOOLS+= pkg-config
|
|
. include "../../x11/${_W3M_IMAGELIB}/buildlink3.mk"
|
|
. include "../../graphics/gdk-pixbuf2-xlib/buildlink3.mk"
|
|
. endif
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-image
|
|
.endif
|