blob: 5cce3efef035b83b7ca7cda423c076b873d38b1e (
plain)
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
|
# Created by: Juan Salaverria <rael@vectorstar.net>
# $FreeBSD$
PORTNAME= lostirc
PORTVERSION= 0.4.6
PORTREVISION= 11
CATEGORIES= irc
MASTER_SITES= SF
MAINTAINER= ports@FreeBSD.org
COMMENT= Simple and minimal IRC client for X
LICENSE= GPLv2 GPLv3
LICENSE_COMB= dual
LIB_DEPENDS= libgtkmm-2.4.so:x11-toolkits/gtkmm24
USES= pathfix pkgconfig gettext
USE_GNOME= gnomeprefix
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --disable-kde
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
OPTIONS_DEFINE= DOCS
post-install:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for file in AUTHORS ChangeLog TODO README INSTALL
${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR}
.endfor
.include <bsd.port.mk>
|