mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-05 06:27:37 +00:00
a42945f1ee
- Minor refactor PR: 142590 [based on] Submitted by: Sevan Janiyan <venture37@geeklan.co.uk>
38 lines
794 B
Makefile
38 lines
794 B
Makefile
# 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>
|