mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +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
46 lines
1.1 KiB
Makefile
46 lines
1.1 KiB
Makefile
# Ports collection makefile for: mod_cplusplus for Apache 2.x
|
|
# Date created: Dec 29, 2006
|
|
# Whom: Michael Durian <durian@shadetreesoftware.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mod_cplusplus
|
|
PORTVERSION= 1.5.4
|
|
CATEGORIES= www
|
|
MASTER_SITES= SF
|
|
MASTER_SITE_SUBDIR= modcplusplus
|
|
|
|
MAINTAINER= apache@FreeBSD.org
|
|
COMMENT= Apache module for loading C++ objects as handlers
|
|
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
USE_APACHE= 2.0+
|
|
USE_AUTOTOOLS= autoconf:262 autoheader:262 libtool:22 automake:19 aclocal:19
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --with-apxs=${APXS}
|
|
ACLOCAL_ARGS+= -I ${LOCALBASE}/share/aclocal
|
|
AUTOMAKE_ARGS+= -a
|
|
|
|
SUB_FILES= pkg-message
|
|
SUB_LIST= "APACHEMODDIR=${APACHEMODDIR}"
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
post-extract:
|
|
${REINPLACE_CMD} -e 's,-Werror,,' ${WRKSRC}/configure.in
|
|
|
|
pre-configure:
|
|
(cd ${CONFIGURE_WRKSRC} && ${SETENV} ${AUTOTOOLS_ENV} ${LIBTOOLIZE} --force --copy)
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/include/*.h ${PREFIX}/${APACHEINCLUDEDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/src/.libs/libmod_cplusplus.so ${PREFIX}/${APACHEMODDIR}/mod_cplusplus.so
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|