blob: 3cfd7f6385cf605f198814c7a25bf955bf98c193 (
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
30
31
32
33
34
35
36
37
|
# New ports collection makefile for: mob
# Date created: 01 Jan 2001
# Whom: Assar Westerlund <assar@freebsd.org>
#
# $FreeBSD$
#
PORTNAME= mob
PORTVERSION= 0.1.0
PORTREVISION= 2
CATEGORIES= devel
MASTER_SITES= http://steamboat.cs.ucsb.edu/mob/src/
DISTNAME= ${PORTNAME}-1.0-BETA
EXTRACT_SUFX= .tgz
MAINTAINER= ports@FreeBSD.org
COMMENT= Memory Organization Benchmarks
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
USE_GMAKE= yes
GNU_CONFIGURE= yes
.include <bsd.port.pre.mk>
.if ${ARCH} == "amd64" || ${ARCH} == "ia64"
BROKEN= "Configure fails on amd64 or ia64"
.endif
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/inspector ${PREFIX}/bin
.if !defined(NOPORTDOCS)
@${MKDIR} ${PREFIX}/share/doc/mob
${INSTALL_DATA} ${WRKSRC}/doc/mob.ps ${PREFIX}/share/doc/mob
.endif
.include <bsd.port.post.mk>
|