diff options
author | David Thiel <lx@FreeBSD.org> | 2009-05-24 04:43:34 +0000 |
---|---|---|
committer | David Thiel <lx@FreeBSD.org> | 2009-05-24 04:43:34 +0000 |
commit | 006af081c98f9d967d5d698a3e10a369f6ac0704 (patch) | |
tree | a61e7f64f1c9e0f8fee6f406d1223332076c9d64 /textproc/scim | |
parent | ba8961f1b2d12c3e366cad5ab3d813fd5723c9e9 (diff) | |
download | ports-006af081c98f9d967d5d698a3e10a369f6ac0704.tar.gz ports-006af081c98f9d967d5d698a3e10a369f6ac0704.zip |
Fix scim-helper-manager segfaults.
Submitted by: Takahashi Yoshihiro <nyan@FreeBSD.org>
Notes
Notes:
svn path=/head/; revision=234469
Diffstat (limited to 'textproc/scim')
-rw-r--r-- | textproc/scim/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/textproc/scim/Makefile b/textproc/scim/Makefile index 573def168494..548913c97745 100644 --- a/textproc/scim/Makefile +++ b/textproc/scim/Makefile @@ -7,7 +7,7 @@ PORTNAME= scim PORTVERSION= 1.4.7 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= textproc MASTER_SITES= SF @@ -32,12 +32,12 @@ CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include -D__STDC_ISO_10646__" \ LDFLAGS="-L${LOCALBASE}/lib -lintl" post-patch: - ${REINPLACE_CMD} -e '/^scim_setup_LDFLAGS/s|=|= ${PTHREAD_LIBS}|' \ - ${WRKSRC}/extras/setup/Makefile.in + ${REINPLACE_CMD} -e '/^libscim@SCIM_EPOCH@_la_LDFLAGS/s|=|= ${PTHREAD_LIBS}|' \ + ${WRKSRC}/src/Makefile.in post-install: @gtk-query-immodules-2.0 > ${LOCALBASE}/etc/gtk-2.0/gtk.immodules @${CAT} ${PKGMESSAGE} - @${ECHO} To display this message again, type pkg_info -D ${PKGNAME} + @${ECHO} To display this message again, type ${PKG_INFO} -D ${PKGNAME} .include <bsd.port.post.mk> |