a23653155d
- Use own do-install target(mainly to avoid creating odd directory) - Include additional document into package PR: 24282 Submitted by: Ports Fury
31 lines
640 B
Makefile
31 lines
640 B
Makefile
# 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= 1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://steamboat.cs.ucsb.edu/mob/src/
|
|
DISTNAME= ${PORTNAME}-1.0-BETA
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
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.mk>
|