diff options
author | knu <knu@FreeBSD.org> | 2003-10-18 22:53:27 +0800 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2003-10-18 22:53:27 +0800 |
commit | 768f8cd3b2db1c7eea41c4f532721a15cc7ad981 (patch) | |
tree | 7d9aab0d978a23485e6098273e131d7d72400d6e /textproc | |
parent | 42d810e381a925a59b70f36909cbedf041c18567 (diff) | |
download | freebsd-ports-gnome-768f8cd3b2db1c7eea41c4f532721a15cc7ad981.tar.gz freebsd-ports-gnome-768f8cd3b2db1c7eea41c4f532721a15cc7ad981.tar.zst freebsd-ports-gnome-768f8cd3b2db1c7eea41c4f532721a15cc7ad981.zip |
Unbreak by depending on glib 2.0 instead of 1.2.
Improve autotools handling.
Submitted by: Gen Otsuji <gen_otsuji@yahoo.co.jp>
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/sary/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/textproc/sary/Makefile b/textproc/sary/Makefile index 7c202072170c..50b07ce7c482 100644 --- a/textproc/sary/Makefile +++ b/textproc/sary/Makefile @@ -13,20 +13,19 @@ MASTER_SITES= http://prime.sourceforge.jp/freebsd/ MAINTAINER= knu@FreeBSD.org COMMENT= A suffix array library and tools, which provide fast full-text search -USE_GNOME= glib12 gnomehack +USE_GNOME= glib20 gnomehack USE_REINPLACE= yes GNU_CONFIGURE= yes USE_AUTOMAKE_VER= 15 AUTOMAKE_ARGS= -a USE_LIBTOOL= yes -LIBTOOLFILES= INSTALLS_SHLIB= yes MAN1= sary.1 mksary.1 pre-configure: - @cd ${WRKSRC} && ${ACLOCAL} && ${LIBTOOLIZE} && ${AUTOHEADER} + cd ${WRKSRC} && ${LIBTOOLIZE} && ${AUTOHEADER} post-patch: .if !defined(NOPORTDOCS) @@ -34,6 +33,8 @@ post-patch: ${XARGS} ${REINPLACE_CMD} \ -e 's,^docsdir = .*,docsdir = \$$(datadir)/doc/sary,' .endif + @cd ${WRKSRC} && ${ACLOCAL} + ${REINPLACE_CMD} -e 's,--no-verify,,' ${WRKSRC}/aclocal.m4 post-install: .if !defined(NOPORTDOCS) |