mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
e880a487e0
Note: The distfile contains another library and several other programs (mainly, upgrade of existing programs). I will make separate ports for them. Note 2: Since no other port currently depends on this port, I'm simply replacing the old library with the new one. PR: 3484
29 lines
673 B
Makefile
29 lines
673 B
Makefile
# New ports collection makefile for: libwww
|
|
# Version required: 5.1b
|
|
# Date created: 18 Feb 1996
|
|
# Whom: torstenb
|
|
#
|
|
# $Id: Makefile,v 1.2 1996/11/18 11:41:19 asami Exp $
|
|
#
|
|
|
|
DISTNAME= w3c-libwww-5.1b
|
|
PKGNAME= libwww-5.1b
|
|
CATEGORIES= www devel
|
|
MASTER_SITES= ftp://ftp.w3.org/pub/libwww/
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
DOCDIR= ${PREFIX}/share/doc/libwww
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/Library/src/*.h ${PREFIX}/include
|
|
@${LDCONFIG} -m ${PREFIX}/lib
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCDIR}/User
|
|
${CP} -R ${WRKSRC}/Library/User/* ${DOCDIR}/User
|
|
@${MKDIR} ${DOCDIR}/src
|
|
${CP} ${WRKSRC}/Library/src/*.html ${DOCDIR}/src
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|