mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
789d75c728
-Update libtool and libltdl to 2.2.6a. -Remove devel/libtool15 and devel/libltdl15. -Fix ports build with libtool22/libltdl22. -Bump ports that depend on libltdl22 due to shared library version change. -Explain what to do update in the UPDATING. It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop and applications in the runtime. With help: marcus and kwm Pointyhat-exp: a few times by pav Tested by: pgollucci, "Romain Tartière" <romain@blogreen.org>, and a few MarcusCom CVS users. Also, I might have missed a few. Repocopy by: marcus Approved by: portmgr
43 lines
1011 B
Makefile
43 lines
1011 B
Makefile
# ports collection makefile for: MySQL++
|
|
# Date created: 2008-04-03
|
|
# Whom: Vlad GALU <dudu@dudu.ro>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mysql++
|
|
PORTVERSION= 3.0.8
|
|
CATEGORIES= databases devel
|
|
MASTER_SITES= http://tangentsoft.net/mysql++/releases/ \
|
|
T32.TecNik93.com/ports/others_ports/${PORTNAME}/sources/
|
|
PKGNAMESUFFIX= -mysql${MYSQL_VER}
|
|
|
|
MAINTAINER= dudu@dudu.ro
|
|
COMMENT= Complex C++ API for MySQL${MYSQL_VER}
|
|
|
|
USE_MYSQL= yes
|
|
USE_AUTOTOOLS= libtool:22
|
|
CONFIGURE_ARGS+=--with-mysql=${LOCALBASE} --enable-thread-check
|
|
USE_LDCONFIG= yes
|
|
USE_GMAKE= yes
|
|
PLIST_SUB+= VER=${PORTVERSION}
|
|
|
|
CONFLICTS= ${PORTNAME}*-1.*
|
|
|
|
PORTDOCS= *
|
|
PORTEXAMPLES= *
|
|
|
|
post-install:
|
|
.ifndef(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
(cd ${WRKSRC}/doc/ && ${COPYTREE_SHARE} pdf ${DOCSDIR})
|
|
(cd ${WRKSRC}/doc/ && ${COPYTREE_SHARE} html ${DOCSDIR})
|
|
.endif
|
|
.ifndef(NOPORTEXAMPLES)
|
|
${MKDIR} ${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/examples/*.h ${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/examples/*.cpp ${EXAMPLESDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|