View | Details | Raw Unified | Return to bug 175489
Collapse All | Expand All

(-)./Makefile (-23 / +17 lines)
Lines 1-41 Link Here
1
# New ports collection makefile for: ii
1
# Created by: Julien Laffaye <kimelto@gmail.com>
2
# Date created: 	July 13, 2008
2
# $FreeBSD: head/irc/ii/Makefile 300896 2012-07-14 13:54:48Z beat $
3
# Whom:				Julien Laffaye <kimelto@gmail.com>
4
#
5
# $FreeBSD: ports/irc/ii/Makefile,v 1.8 2012/11/17 05:58:28 svnexp Exp $
6
#
7
3
8
PORTNAME=	ii
4
PORTNAME=	ii
9
PORTVERSION=	1.6
5
PORTVERSION=	1.7
10
CATEGORIES=	irc
6
CATEGORIES=	irc
11
MASTER_SITES=	http://dl.suckless.org/tools/ \
7
MASTER_SITES=	http://dl.suckless.org/tools/ \
12
		http://laffaye.free.fr/distfiles/
8
		LOCAL/sbz
13
9
14
MAINTAINER=	jlaffaye@FreeBSD.org
10
MAINTAINER=	sbz@FreeBSD.org
15
COMMENT=	A minimalist FIFO and filesystem-based IRC client
11
COMMENT=	Minimalist FIFO and filesystem-based IRC client
16
12
17
LICENSE=	MIT
13
LICENSE=	MIT
18
14
19
MAN1=		ii.1
15
MAN1=		${PORTNAME}.1
20
PLIST_FILES=	bin/ii
16
PLIST_FILES=	bin/${PORTNAME}
21
PORTDOCS=	CHANGES README FAQ
17
PORTDOCS=	CHANGES FAQ README
22
PORTEXAMPLES=	query.sh
18
PORTEXAMPLES=	query.sh
23
MAKE_ARGS=	-E CC
19
MAKE_ARGS=	-E CC
24
20
21
.include <bsd.port.options.mk>
22
25
do-install:
23
do-install:
26
	@${INSTALL_PROGRAM} ${WRKSRC}/ii ${PREFIX}/bin
24
	@${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
27
	@${INSTALL_MAN} ${WRKSRC}/ii.1 ${MAN1PREFIX}/man/man1
25
	@${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${MAN1PREFIX}/man/man1
28
.if !defined(NOPORTDOCS)
26
.if ${PORT_OPTIONS:MDOCS}
29
	@${ECHO_MSG} "installing additional documentation to ${DOCSDIR}"
30
	@${MKDIR} ${DOCSDIR}
27
	@${MKDIR} ${DOCSDIR}
31
.for DOCFILE in ${PORTDOCS}
28
	@${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}
32
	@${INSTALL_DATA} ${WRKSRC}/${DOCFILE} ${DOCSDIR}
33
.endfor
34
.endif
29
.endif
35
.if !defined(NOPORTEXAMPLES)
30
.if ${PORT_OPTIONS:MEXAMPLES}
36
	@${ECHO_MSG} "installing additional examples to ${EXAMPLESDIR}"
37
	@${MKDIR} ${EXAMPLESDIR}
31
	@${MKDIR} ${EXAMPLESDIR}
38
	@${INSTALL_DATA} ${WRKSRC}/query.sh ${EXAMPLESDIR}
32
	@${INSTALL_DATA} ${WRKSRC}/${PORTEXAMPLES} ${EXAMPLESDIR}
39
.endif
33
.endif
40
34
41
.include <bsd.port.mk>
35
.include <bsd.port.mk>
(-)./distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (ii-1.6.tar.gz) = 794fa639b253b4b332fa80e76cde782d9dae021dfaf35a207334c553d962cc29
1
SHA256 (ii-1.7.tar.gz) = 3a72ac6606d5560b625c062c71f135820e2214fed098e6d624fc40632dc7cc9c
2
SIZE (ii-1.6.tar.gz) = 9970
2
SIZE (ii-1.7.tar.gz) = 10174
(-)./pkg-descr (-1 / +1 lines)
Lines 6-9 Link Here
6
are related in and out files created. This allows IRC communication from
6
are related in and out files created. This allows IRC communication from
7
command line and adheres to the Unix philosophy.
7
command line and adheres to the Unix philosophy.
8
8
9
WWW:	http://tools.suckless.org/ii/
9
WWW: http://tools.suckless.org/ii/

Return to bug 175489