blob: 745678c4df5d3d7e94458f2e26fe5b66eae85ea5 (
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: TrickyIRC
# Date created: Jun 20th 1999
# Whom: troll
#
# $FreeBSD$
#
PORTNAME= trickyirc
PORTVERSION= 1.1.0
PORTREVISION= 1
CATEGORIES= irc
MASTER_SITES= http://www.leb.net/~troll/
DISTNAME= TrickyIRC-${PORTVERSION}
MAINTAINER= gahr@FreeBSD.org
COMMENT= Allows client independent detaching and reattaching of IRC sessions
MAKEFILE= GNUmakefile
WRKSRC= ${WRKDIR}/trickyirc
USE_GMAKE= YES
PLIST_FILES= bin/${PORTNAME}
PORTDOCS= *
PORTEXAMPLES= *
post-install:
.if !defined(NOPORTDOCS)
@ ${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
.endif
.if !defined(NOPORTEXAMPLES)
@ ${MKDIR} ${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/config.sample ${EXAMPLESDIR}
.endif
@${STRIP_CMD} ${PREFIX}/bin/${PORTNAME}
.include <bsd.port.mk>
|