summaryrefslogtreecommitdiff
path: root/databases/mysql4-client
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2008-03-06 16:01:42 +0000
committerjlam <jlam@pkgsrc.org>2008-03-06 16:01:42 +0000
commit90e48d229add1c2f25bedc6764fc627afe46b17d (patch)
tree4cc7ff4d502daf94086d3064592117a037e71fae /databases/mysql4-client
parent8e11396d2cfba5f98a92c0f95949eaac123f209d (diff)
downloadpkgsrc-90e48d229add1c2f25bedc6764fc627afe46b17d.tar.gz
+ Honor PKGINFODIR in mysql4-client.
+ Remove explicit naming of "-lncurses -ltermcap" as the way to get the termcap libraries. Including termcap.buildlink3.mk (indirectly through including readline/buildlink3.mk) will do the right thing. + Remove readline dependency from Makefile.common and add it into mysql4-client/Makefile. Only the -client package needs and uses readline. The -server package only "needs" it to placate the configure script, but none of its installed binaries are linked against it. + Add full DESTDIR support to the -client and -server packages. Bump the PKGREVISION of mysql4-client to 3. The PKGREVISION of mysql4-server remains unchanged since there are no user-visible changes to the binary package.
Diffstat (limited to 'databases/mysql4-client')
-rw-r--r--databases/mysql4-client/Makefile18
-rw-r--r--databases/mysql4-client/Makefile.common14
2 files changed, 18 insertions, 14 deletions
diff --git a/databases/mysql4-client/Makefile b/databases/mysql4-client/Makefile
index c23de659c07..2eb4a20d1bc 100644
--- a/databases/mysql4-client/Makefile
+++ b/databases/mysql4-client/Makefile
@@ -1,12 +1,14 @@
-# $NetBSD: Makefile,v 1.25 2008/01/18 05:06:27 tnn Exp $
+# $NetBSD: Makefile,v 1.26 2008/03/06 16:01:42 jlam Exp $
PKGNAME= ${DISTNAME:S/-/-client-/}
-PKGREVISION= 1
+PKGREVISION= 3
SVR4_PKGNAME= mysqc
COMMENT= MySQL 4, a free SQL database (client)
CONFLICTS= {mysql-client-[0-9]*,mysql3-client-[0-9]*}
+PKG_DESTDIR_SUPPORT= user-destdir
+
.include "Makefile.common"
CONFIGURE_ARGS+= --without-extra-tools
@@ -15,13 +17,19 @@ CONFIGURE_ARGS+= --enable-thread-safe-client
UNWRAP_FILES= scripts/mysql_config
INFO_FILES= # PLIST
+INSTALLATION_DIRS= ${PKGINFODIR}
+
post-install:
- ${INSTALL_DATA} ${WRKSRC}/Docs/mysql.info ${PREFIX}/info
- ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/mysql
+ ${INSTALL_DATA} ${WRKSRC}/Docs/mysql.info \
+ ${DESTDIR}${PREFIX}/${PKGINFODIR}
+ ${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/examples/mysql
.for f in huge large innodb-heavy-4G small medium
${INSTALL_DATA} ${WRKSRC}/support-files/my-${f}.cnf.sh \
- ${PREFIX}/share/examples/mysql/my-${f}.cnf
+ ${DESTDIR}${PREFIX}/share/examples/mysql/my-${f}.cnf
.endfor
+# We need the full readline on NetBSD<2.0.
+INCOMPAT_READLINE+= NetBSD-[0-1].*-*
.include "../../devel/readline/buildlink3.mk"
+
.include "../../mk/bsd.pkg.mk"
diff --git a/databases/mysql4-client/Makefile.common b/databases/mysql4-client/Makefile.common
index c5138530047..cf7e89bd210 100644
--- a/databases/mysql4-client/Makefile.common
+++ b/databases/mysql4-client/Makefile.common
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.60 2007/10/16 23:48:59 tnn Exp $
+# $NetBSD: Makefile.common,v 1.61 2008/03/06 16:01:42 jlam Exp $
DISTNAME= mysql-4.1.22
CATEGORIES= databases
@@ -35,7 +35,6 @@ MYSQL_EXTRA_CHARSET?= all
CONFIGURE_ARGS+= --localstatedir=${MYSQL_DATADIR:Q}
CONFIGURE_ARGS+= --with-named-z-libs=z
CONFIGURE_ARGS+= --without-libwrap
-CONFIGURE_ARGS+= --with-named-curses-libs="-lcurses -ltermcap"
.if ${OPSYS} == "IRIX"
CFLAGS+= -DIRIX5 -DNEEDS_BSTRING_H
@@ -43,16 +42,13 @@ CFLAGS+= -DIRIX5 -DNEEDS_BSTRING_H
CONFIGURE_ENV+= ac_cv_lib_gen_p2open="no"
.endif
-# We always use our own readline, either system- or pkgsrc-supplied.
+# We always use our own readline. Note that these --without-* settings
+# are confusing, but they just mean "don't use the included readline
+# or libedit".
+#
CONFIGURE_ARGS+= --without-readline
CONFIGURE_ARGS+= --without-libedit
-# We need the full readline on NetBSD 1.6.x
-.if !empty(MACHINE_PLATFORM:MNetBSD-1.*)
-USE_BUILTIN.readline= no
-.include "../../devel/readline/buildlink3.mk"
-.endif
-
# This forces mysql.info _not_ to be rebuilt.
CONFIGURE_ARGS+= --without-docs