mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
54a0b86543
in bsd.autotools.mk essentially makes this a no-op given that all the old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in exactly the same way as USE_AUTOTOOLS itself. Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME team -- all GNOME 2.12.x ports use it. Preliminary documentation can be found at: http://people.FreeBSD.org/~ade/autotools.txt which is in the process of being SGMLized before introduction into the Porters Handbook. Light blue touch-paper. Run.
71 lines
1.9 KiB
Makefile
71 lines
1.9 KiB
Makefile
# New ports collection makefile for: iiimf-gnome-im-switcher
|
|
# Date created: 10 Sep 2004
|
|
# Whom: Kuang-che Wu <kcwu@csie.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gnome-im-switcher
|
|
PORTVERSION= 12.2
|
|
PORTREVISION= 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= IIIMF gnome input method switcher
|
|
|
|
ONLY_FOR_ARCHS= i386
|
|
|
|
USE_X_PREFIX= yes
|
|
|
|
USE_BZIP2= yes
|
|
USE_REINPLACE= yes
|
|
USE_GETTEXT= yes
|
|
USE_GMAKE= yes
|
|
USE_GNOME= intltool gconf2 libglade2 libgnomeui \
|
|
gnomepanel gnomeprefix gnomehack
|
|
USE_AUTOTOOLS= automake:19:env autoconf:259:env libtool:15:env
|
|
WANT_AUTOHEADER_VER= 259
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME:S/src-//}
|
|
BUILDDIR= ${WRKSRC}/gnome-im-switcher
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} < 503000
|
|
IGNORE= It is supported on FreeBSD 5.3 and later.
|
|
.endif
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include -I${X11BASE}/include ${PTHREAD_CFLAGS}
|
|
LDFLAGS+= -L${LOCALBASE}/lib -L${X11BASE}/lib -lintl ${PTHREAD_LIBS}
|
|
CONFIGURE_ENV+= CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} \
|
|
-e '/^serverdir/s,$$[(]libdir[)],%%LOCALBASE%%/libdata,g' \
|
|
-e '/^uidir/s,$$[(]datadir[)]/,&gnome/,g' \
|
|
${BUILDDIR}/src/Makefile.am
|
|
${REINPLACE_CMD} \
|
|
-e "s,%%LOCALBASE%%,${LOCALBASE},g" \
|
|
-e "s,%%PREFIX%%,${PREFIX},g" \
|
|
${WRKSRC}/Makefile ${BUILDDIR}/Makefile.am \
|
|
${BUILDDIR}/src/Makefile.am
|
|
${REINPLACE_CMD} -e "/GNOMECC_DATA_DIR/s,/share/,&gnome/,g" \
|
|
${BUILDDIR}/configure.ac
|
|
${REINPLACE_CMD} -e "/^GNOMECC_.*_DIR=/s,[(]datadir[)]/,&gnome/,g" \
|
|
${BUILDDIR}/configure.ac
|
|
|
|
do-configure:
|
|
@cd ${WRKSRC} && ${SETENV} ${AUTOTOOLS_ENV} ${GMAKE} bootstrap
|
|
@cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} ${GMAKE} config
|
|
|
|
post-configure:
|
|
${REINPLACE_CMD} -e '/^pkgdatadir/s,[(]datadir[)]/,&gnome/,g' \
|
|
-e '/^iconsdir/s,[(]datadir[)]/,&gnome/,g' \
|
|
${BUILDDIR}/src/Makefile
|
|
|
|
.include <bsd.port.post.mk>
|