blob: e5c1ec17e656e87d5c0b1df7093b29e114427fc1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# New ports collection makefile for: boehm-gc
# Date created: 15 November 1996
# Whom: Mike McGaughey <mmcg@cs.monash.edu.au>
#
# $FreeBSD$
#
PORTNAME= boehm-gc
PORTVERSION= 6.0
CATEGORIES= devel
MASTER_SITES= http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/
DISTNAME= gc${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
ONLY_FOR_ARCHS= i386 # XXX can't figure out whether to define
# # XXX SEARCH_FOR_DATA_START on other platforms
HAS_CONFIGURE= yes
INSTALLS_SHLIB= yes
MAN3= gc.3
post-install:
${INSTALL_DATA} ${WRKSRC}/include/gc.h ${PREFIX}/include
${INSTALL_DATA} ${WRKSRC}/include/gc_cpp.h ${PREFIX}/include
${INSTALL_MAN} ${WRKSRC}/doc/gc.man ${PREFIX}/man/man3/gc.3
.include <bsd.port.mk>
|