mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
f718cc3307
- Add DOCS option - Fix LICENSE (documentation states it is GPL2+ or Artistic) Approved by: portmgr blanket
32 lines
684 B
Makefile
32 lines
684 B
Makefile
# Created by: Ying-Chieh Liao <ijliao@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= make++
|
|
PORTVERSION= 2.0
|
|
CATEGORIES= devel perl5
|
|
MASTER_SITES= SF/${PORTNAME:S/+/p/g}/${PORTVERSION}
|
|
DISTNAME= ${PORTNAME:S/+/p/g}-${PORTVERSION}
|
|
EXTRACT_SUFX= .txz
|
|
|
|
MAINTAINER= gavin@16degrees.com.au
|
|
COMMENT= Drop-in replacement for GNU make
|
|
|
|
LICENSE= ART10 GPLv2 GPLv3
|
|
LICENSE_COMB= dual
|
|
|
|
USES= perl5 tar:xz
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --prefix=${PREFIX} \
|
|
--mandir=${MANPREFIX}/man \
|
|
--htmldir=${DOCSDIR}/html
|
|
|
|
DATADIR= ${PREFIX}/share/${PORTNAME:S/+/p/g}
|
|
DOCSDIR= ${PREFIX}/share/doc/${PORTNAME:S/+/p/g}
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-patch:
|
|
@${TOUCH} ${WRKSRC}/.test_done
|
|
|
|
.include <bsd.port.mk>
|