diff options
Diffstat (limited to 'japanese/jd/Makefile')
-rw-r--r-- | japanese/jd/Makefile | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/japanese/jd/Makefile b/japanese/jd/Makefile new file mode 100644 index 000000000000..087315c9a557 --- /dev/null +++ b/japanese/jd/Makefile @@ -0,0 +1,44 @@ +# New ports collection makefile for: jd +# Date created: 10 May 2009 +# Whom: Takashi Kato <townwear@gmail.com> +# +# $FreeBSD$ +# + +PORTNAME= jd +PORTVERSION= 2.3.0 +CATEGORIES= japanese www +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_JP} +MASTER_SITE_SUBDIR= jd4linux/38008 +DISTNAME= ${PORTNAME}-${PORTVERSION}-090305 +EXTRACT_SUFX= .tgz + +MAINTAINER= townwear@gmail.com +COMMENT= A 2ch browser + +MAKE_JOBS_SAFE= yes +GNU_CONFIGURE= yes +USE_GMAKE= yes +USE_AUTOTOOLS= autoconf:262 automake:110 libtool:15 + +LIB_DEPENDS+= gnutls:${PORTSDIR}/security/gnutls \ + gtkmm:${PORTSDIR}/x11-toolkits/gtkmm24 + +.if defined(WITH_ONIGURUMA) +CONFIGURE_ARGS+= --with-oniguruma +LIB_DEPENDS+= onig:${PORTSDIR}/devel/oniguruma5 +.endif + +.if defined(WITH_GNOMEUI) +CONFIGURE_ARGS+= --with-sessionlib=gnomeui +USE_GNOME+= libgnomeui +.endif + +.if defined(WITH_PANGOLAYOUT) +CONFIGURE_ARGS+= --with-pangolayout +.endif + +pre-configure: + @cd ${WRKSRC} && ${AUTORECONF} -i + +.include <bsd.port.mk> |