mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-08 12:01:56 +00:00
![Ade Lovett](/assets/img/avatar_default.png)
Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed.
31 lines
669 B
Makefile
31 lines
669 B
Makefile
# New ports collection makefile for: libwww
|
|
# Date created: 18 Feb 1996
|
|
# Whom: torstenb
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libwww
|
|
PORTVERSION= 5.4.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= www devel
|
|
MASTER_SITES= http://www.w3.org/Library/Distribution/
|
|
DISTNAME= w3c-${PORTNAME}-${PORTVERSION}
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= The W3C Reference Library
|
|
|
|
USE_LIBTOOL_VER=13
|
|
USE_GMAKE= yes
|
|
CONFIGURE_ARGS= --enable-shared --enable-static --with-zlib
|
|
USE_PERL5_BUILD=yes
|
|
MAKE_ENV= objformat=${PORTOBJFORMAT}
|
|
INSTALLS_SHLIB= yes
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/modules/expat/xmlparse/xmlparse.h \
|
|
${PREFIX}/include/w3c-libwww/
|
|
|
|
.include <bsd.port.mk>
|