diff options
author | agc <agc@pkgsrc.org> | 2002-07-16 15:40:59 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2002-07-16 15:40:59 +0000 |
commit | de072a7d4561b5b8f16e553c97228dd2516f312d (patch) | |
tree | 4aa854855dc948aabff3bd897f45e36c5db3369a /inputmethod | |
parent | 50630f307361ababd7a9b2eb05d58313c6663123 (diff) | |
download | pkgsrc-de072a7d4561b5b8f16e553c97228dd2516f312d.tar.gz |
The configure script needs to find the db3 libs, so pass in the buildlink
directory via --with-db-inc and --with-db-lib.
Set USE_BUILDLINK_ONLY to yes
Use pax to copy a file hierarchy at installation time.
Diffstat (limited to 'inputmethod')
-rw-r--r-- | inputmethod/xcin/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/inputmethod/xcin/Makefile b/inputmethod/xcin/Makefile index 17adbcea0f1..77c9425d00e 100644 --- a/inputmethod/xcin/Makefile +++ b/inputmethod/xcin/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 2002/06/04 08:46:59 uebayasi Exp $ +# $NetBSD: Makefile,v 1.2 2002/07/16 15:40:59 agc Exp $ # DISTNAME= xcin-2.5.3.pre2 @@ -15,6 +15,10 @@ USE_X11BASE= yes USE_LIBTOOL= yes LTCONFIG_OVERRIDE= ${WRKSRC}/script/ltmain.sh GNU_CONFIGURE= yes +CONFIGURE_ARGS+= --with-db-lib=${BUILDLINK_DIR}/lib +CONFIGURE_ARGS+= --with-db-inc=${BUILDLINK_DIR}/include/db3 + +USE_BUILDLINK_ONLY= yes WRKSRC= ${WRKDIR}/xcin @@ -27,7 +31,7 @@ post-configure: post-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/xcin - ${CP} -Rf ${WRKSRC}/doc/* ${PREFIX}/share/doc/xcin + cd ${WRKSRC}/doc; ${PAX} -rw * ${PREFIX}/share/doc/xcin .include "../../converters/libiconv/buildlink.mk" .include "../../databases/db3/buildlink.mk" |