blob: 6c143341ccef79df4ca0232f62b74c9142e77fc8 (
plain)
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
|
# New ports collection makefile for: micq
# Version required: 0.4.*
# Date created: 11 Oct 1998
# Whom: mph
#
# $FreeBSD$
#
DISTNAME= micq-0.4.1
CATEGORIES= net
MASTER_SITES= ftp://micq.chatzone.org/pub/micq/V0.4.1/
EXTRACT_SUFX= .tgz
MAINTAINER= mph@freebsd.org
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/micq ${PREFIX}/bin
.if !defined(NOPORTDOCS)
${MKDIR} ${PREFIX}/share/doc/micq
.for file in README TODO WISHLIST commands.txt
${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/micq
.endfor
.endif
.include <bsd.port.mk>
|