54a0b86543
in bsd.autotools.mk essentially makes this a no-op given that all the old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in exactly the same way as USE_AUTOTOOLS itself. Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME team -- all GNOME 2.12.x ports use it. Preliminary documentation can be found at: http://people.FreeBSD.org/~ade/autotools.txt which is in the process of being SGMLized before introduction into the Porters Handbook. Light blue touch-paper. Run.
34 lines
846 B
Makefile
34 lines
846 B
Makefile
# Ports collection makefile for: libsocket++
|
|
# Date created: Sun Jan 19, 1997
|
|
# Whom: Narvi <narvi@haldjas.folklore.ee>
|
|
# David O'Brien (obrien@FreeBSD.org)
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libsocket++
|
|
PORTVERSION= 1.12.12
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.linuxhacker.at/linux/downloads/src/
|
|
DISTNAME= socket++-${PORTVERSION}
|
|
|
|
MAINTAINER= arved@FreeBSD.org
|
|
COMMENT= A C++ wrapper library to the sockets
|
|
|
|
GNU_CONFIGURE= yes
|
|
INSTALLS_SHLIB= yes
|
|
USE_AUTOTOOLS= automake:19 autoconf:259 libtool:15:inc
|
|
SCRIPTS_ENV+= ACLOCAL_FLAGS="-I ${LOCALBASE}/share/aclocal/"
|
|
|
|
INFO= socket++
|
|
|
|
pre-configure:
|
|
@(cd ${WRKSRC}; ${SETENV} ${SCRIPTS_ENV} ${SH} ./autogen)
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${PREFIX}/share/doc/libsocket++
|
|
${INSTALL_MAN} ${WRKSRC}/README ${PREFIX}/share/doc/libsocket++
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|