blob: dba7e297414593743ef0ef8899f9e9bbe34f8e8f (
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
38
39
40
|
# New ports collection makefile for: naim
# Date created: 02 March 1999
# Whom: mharo@area51.fremont.ca.us
#
# $FreeBSD$
#
PORTNAME= naim
PORTVERSION= 0.11.8.3.1
CATEGORIES= net-im irc
MASTER_SITES= http://naim.googlecode.com/files/
MAINTAINER= j@scre.ws
COMMENT= Console ncurses-based AIM, ICQ, IRC, and Lily client
GNU_CONFIGURE= yes
USE_BZIP2= yes
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
MAN1= naim.1
MLINKS= naim.1 nirc.1 naim.1 nicq.1 naim.1 nlily.1
PORTDOCS= FAQ README commands.txt keyboard.txt
OPTIONS= DETACH "Enable 'detach' feature (requires misc/screen)" off
.include <bsd.port.pre.mk>
.if !defined(NOPORTDOCS)
CONFIGURE_ARGS+= --with-pkgdocdir=${DOCSDIR}
.else
CONFIGURE_ARGS+= --without-pkgdocdir
.endif
.if defined(WITH_DETACH)
RUN_DEPENDS= screen:${PORTSDIR}/sysutils/screen
CONFIGURE_ARGS+= --enable-detach
.endif
.include <bsd.port.post.mk>
|