40a684ff1e
- drop maintainership - update to r12.2 - some bug fixes PR: 81184 Submitted by: Masanori OZAWA <ozawa@ongs.co.jp> Approved by: maintainer
68 lines
1.6 KiB
Makefile
68 lines
1.6 KiB
Makefile
# New ports collection makefile for: iiimf-gtk
|
|
# Date created: 6 Dec 2003
|
|
# Whom: Kuang-che Wu <kcwu@csie.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gtk
|
|
PORTVERSION= 12.2
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://www.openi18n.org/download/im-sdk/src/
|
|
PKGNAMEPREFIX= iiimf-
|
|
DISTNAME= iiimf-src-${PORTVERSION}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= ozawa@ongs.co.jp
|
|
COMMENT= Internet/Intranet Input Method Server Framework
|
|
|
|
LIB_DEPENDS= iiimp.1:${PORTSDIR}/textproc/iiimf-protocol-lib \
|
|
iiimcf.3:${PORTSDIR}/textproc/iiimf-client-lib
|
|
|
|
ONLY_FOR_ARCHS= i386
|
|
|
|
USE_X_PREFIX= yes
|
|
|
|
USE_BZIP2= yes
|
|
USE_ICONV= yes
|
|
USE_REINPLACE= yes
|
|
USE_GETTEXT= yes
|
|
USE_GMAKE= yes
|
|
USE_GNOME= intltool gtk20
|
|
WANT_AUTOCONF_VER= 259
|
|
WANT_AUTOHEADER_VER= 259
|
|
WANT_AUTOMAKE_VER= 19
|
|
WANT_LIBTOOL_VER= 15
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME:S/src-//}
|
|
BUILDDIR= ${WRKSRC}/iiimgcf
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} < 503000
|
|
IGNORE= It is supported on FreeBSD 5.3 and later.
|
|
.endif
|
|
|
|
.if defined(WITH_DEBUG)
|
|
CFLAGS+= -DDEBUG
|
|
.endif
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include -I${X11BASE}/include ${PTHREAD_CFLAGS}
|
|
LDFLAGS+= -L${LOCALBASE}/lib -L${X11BASE}/lib -liconv -lintl ${PTHREAD_LIBS}
|
|
CONFIGURE_ENV+= CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} \
|
|
-e "s,%%LOCALBASE%%,${LOCALBASE},g" \
|
|
-e "s,%%PREFIX%%,${PREFIX},g" \
|
|
${WRKSRC}/Makefile ${BUILDDIR}/Makefile.am
|
|
|
|
do-configure:
|
|
@cd ${WRKSRC} && ${SETENV} ${AUTOTOOLS_ENV} ${GMAKE} bootstrap
|
|
@cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} ${GMAKE} config
|
|
|
|
post-install:
|
|
${X11BASE}/bin/gtk-query-immodules-2.0 > \
|
|
${X11BASE}/etc/gtk-2.0/gtk.immodules
|
|
|
|
.include <bsd.port.post.mk>
|