blob: 4a86b2c2d66c65137605e10137f21bfe693c5211 (
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
41
|
# New ports collection makefile for: irc/lostirc
# Date created: 01 Jul 2002
# Whom: Juan Salaverria <rael@vectorstar.net>
#
# $FreeBSD$
#
PORTNAME= lostirc
PORTVERSION= 0.4.6
PORTREVISION= 8
CATEGORIES= irc
MASTER_SITES= SF
MAINTAINER= ports@FreeBSD.org
COMMENT= A simple and minimal IRC client for X
LICENSE= GPLv2 GPLv3
LICENSE_COMB= dual
LIB_DEPENDS= gtkmm-2.4.1:${PORTSDIR}/x11-toolkits/gtkmm24
USE_GNOME= gnomehack gnomeprefix
GNU_CONFIGURE= yes
CONFIGURE_ENV= LDFLAGS="${LDFLAGS}"
CONFIGURE_ARGS= --disable-kde
MAKE_JOBS_SAFE= yes
MAN1= lostirc.1
CPPFLAGS= -I${LOCALBASE}/include
LDFLAGS= -L${LOCALBASE}/lib
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for file in AUTHORS ChangeLog TODO README INSTALL
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>
|