mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-01 01:17:02 +00:00
090059a210
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
95 lines
2.6 KiB
Makefile
95 lines
2.6 KiB
Makefile
# New ports collection makefile for: kazehakase
|
|
# Date created: 2004-04-06
|
|
# Whom: michael johnson <ahze@ahze.net>
|
|
#
|
|
# $FreeBSD$
|
|
# $MCom: ports/www/kazehakase/Makefile,v 1.9 2007/10/24 16:17:14 ahze Exp $
|
|
#
|
|
|
|
PORTNAME= kazehakase
|
|
PORTVERSION= 0.5.4
|
|
PORTREVISION= 3
|
|
CATEGORIES= www
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_JP}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}/30219
|
|
|
|
MAINTAINER= ahze@FreeBSD.org
|
|
COMMENT= Kazehakase is a browser with gecko engine like Epiphany or Galeon
|
|
|
|
LIB_DEPENDS= gnutls.26:${PORTSDIR}/security/gnutls
|
|
|
|
USE_GNOME= gnomehack intlhack gnomeprefix gtk20
|
|
USE_GMAKE= yes
|
|
USE_GETTEXT= yes
|
|
USE_GECKO= firefox mozilla seamonkey xulrunner seamonkey
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-gecko_engine=${GECKO}
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \
|
|
LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}"
|
|
MAN1= kazehakase.1
|
|
OPTIONS= WEBKIT "Webkit Backend (along with Gecko)" On
|
|
|
|
.if defined(WITH_MIGEMO)
|
|
USE_RUBY= yes
|
|
BUILD_DEPENDS+= ${RUBY_SITEARCHLIBDIR}/uconv.so:${PORTSDIR}/japanese/ruby-uconv
|
|
RUN_DEPENDS+= ${RUBY_SITEARCHLIBDIR}/uconv.so:${PORTSDIR}/japanese/ruby-uconv
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
.include "${PORTSDIR}/www/mozilla/bsd.gecko.mk"
|
|
|
|
.if defined(WITH_WEBKIT)
|
|
LIB_DEPENDS+= WebKitGtk.1:${PORTSDIR}/www/webkit-gtk2
|
|
PLIST_SUB+= WEBKIT=""
|
|
.else
|
|
PLIST_SUB+= WEBKIT="@comment "
|
|
.endif
|
|
|
|
.if defined(WITH_THUMBNAIL) || exists(${LOCALBASE}/bin/gs)
|
|
USE_GHOSTSCRIPT=yes
|
|
.endif
|
|
|
|
.if defined(WITH_MIGEMO)
|
|
.if ${ARCH} == "i386" || ${ARCH} == "sparc64"
|
|
RUN_DEPENDS+= migemo:${PORTSDIR}/japanese/migemo
|
|
|
|
CONFIGURE_ARGS+= --enable-migemo
|
|
.endif
|
|
.endif
|
|
|
|
WITH_SEARCH?= hyperestraier
|
|
.if ${WITH_SEARCH:L}=="rast"
|
|
LIB_DEPENDS+= rast.1:${PORTSDIR}/textproc/rast
|
|
CONFIGURE_ARGS+= --with-search-engine=rast
|
|
.else
|
|
LIB_DEPENDS+= estraier.8:${PORTSDIR}/textproc/hyperestraier
|
|
CONFIGURE_ARGS+= --with-search-engine=hyperestraier
|
|
.endif
|
|
|
|
pre-everything::
|
|
@${ECHO_MSG} ""
|
|
@${ECHO_MSG} "Enable Migemo (Japanese incremental search) by defining WITH_MIGEMO"
|
|
@${ECHO_MSG} ""
|
|
@${ECHO_MSG} "Enable Thumbnail support by defining WITH_THUMBNAIL"
|
|
@${ECHO_MSG} ""
|
|
@${ECHO_MSG} "By default the search uses hyperestraier but you can"
|
|
@${ECHO_MSG} "use rast by using WITH_SEARCH=rast"
|
|
@${ECHO_MSG} ""
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/usr/share/migemo|${LOCALBASE}/share/migemo|; \
|
|
s|=beginner|=medium|' ${WRKSRC}/etc/kzrc
|
|
.if defined(WITH_MIGEMO)
|
|
@${REINPLACE_CMD} -e 's|migemo=fals|migemo=tru|' ${WRKSRC}/etc/kzrc
|
|
.endif
|
|
.if defined(WITH_THUMBNAIL)
|
|
@${ECHO_MSG} "create_thumbnail=true" >> ${WRKSRC}/etc/kzrc
|
|
.endif
|
|
|
|
pre-install:
|
|
@${REINPLACE_CMD} -e 's|localen|locale|' \
|
|
${WRKSRC}/po/Makefile
|
|
|
|
.include <bsd.port.post.mk>
|