freebsd-ports/databases/msql3/Makefile
Mark Linimon 035feb978b Mark as broken on recent versions of -current due to use of varags.h
(deprecated in gcc3.3 in favor of stdarg.h.)  This is not caught on bento
because this is a restricted port.

The distfile is from 2001; perhaps the submitter of the most recent
PR (ports/58479) might take a look at creating a port for msql3?

While here, pet portlint and fix plist.
2003-12-28 08:55:53 +00:00

78 lines
2.3 KiB
Makefile

# New ports collection makefile for: msql2
# Date created: December 17th 1996
# Whom: jfitz
#
# $FreeBSD$
#
PORTNAME= msql
PORTVERSION= 2.0.12
PORTREVISION= 3
CATEGORIES= databases
MAINTAINER= ports@FreeBSD.org
COMMENT= The Mini SQL server, version 2
INSTALLS_SHLIB= YES
USE_PERL5= YES
USE_REINPLACE= YES
# Not free for commercial use.
RESTRICTED= "restrictive copyright (no commercial use)"
CFLAGS+= -DANSI_ARGS
MAKE_ENV+= WRKSRC=${WRKSRC}
# Uncomment this if you're upgrading from <= b4 to >= b5 and have already
# dumped your databases (or just build with -DOVERWRITE_DB)
#OVERWRITE_DB= YES
post-patch:
cd ${FILESDIR}; \
cp slibinstall.mm slibrary_unix.mm ${WRKSRC}/src/makegen
@${REINPLACE_CMD} -e "s|'bison -y' byacc|byacc 'bison -y'|g" \
${WRKSRC}/src/conf/configure
do-configure:
cd ${WRKSRC}; ${MAKE} target
cd ${WRKSRC}/targets/freebsd; ${SETENV} ${MAKE_ENV} ./setup
@${SETENV} ${MAKE_ENV} ${PERL} ${SCRIPTDIR}/customize_scripts
pre-install:
@${SETENV} ${MAKE_ENV} ${PERL} ${SCRIPTDIR}/check_old_version
pwd
@${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
post-install:
@${INSTALL_SCRIPT} ${WRKSRC}/scripts/run_daemon ${PREFIX}/bin
@${INSTALL_DATA} ${FILESDIR}/post-install-notes ${PREFIX}/share/doc/msql
@for file in msqladmin msqlimport msqlexport; do\
${CHGRP} msql ${PREFIX}/bin/$$file; \
done
${CHGRP} msql ${PREFIX}/sbin/msql2d
@for file in RELEASE_NOTES MSQL_BOOK INSTALL; do \
${INSTALL_DATA} ${WRKSRC}/$$file ${PREFIX}/share/doc/msql; \
done
@${CHMOD} 751 ${PREFIX}/etc/msql2/
@${CHOWN} -R msql:msql ${PREFIX}/etc/msql2/
@${MKDIR} ${PREFIX}/etc/rc.d
@if [ ! -f ${PREFIX}/etc/rc.d/msql2.sh ]; then \
${ECHO_MSG} "Installing ${PREFIX}/etc/rc.d/msql2.sh startup file."; \
${INSTALL_SCRIPT} -m 751 ${FILESDIR}/msql2.sh \
${PREFIX}/etc/rc.d/msql2.sh; \
fi
.if !defined(BATCH)
@ /usr/bin/more -e ${FILESDIR}/post-install-notes
.endif
.include <bsd.port.pre.mk>
.if ${OSVERSION} >= 500113
BROKEN= "Does not compile due to varargs.h being deprecated"
.endif
.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX})
IGNORE="- You must manually obtain ${DISTFILES} from 'http://www.Hughes.com.au' and place it in ${DISTDIR}. The distribution requires registration prior to use"
.endif
.include <bsd.port.post.mk>