blob: 3f7684accf93d75991d9f58809d1bb8b24a5076a (
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
|
# Created by: Juan Salaverria <rael@vectorstar.net>
# $FreeBSD$
PORTNAME= lostirc
PORTVERSION= 0.4.6
PORTREVISION= 12
CATEGORIES= irc
MASTER_SITES= SF
MAINTAINER= ports@FreeBSD.org
COMMENT= Simple and minimal IRC client for X
LICENSE= GPLv2+
LICENSE_FILE= ${WRKSRC}/COPYING
LIB_DEPENDS= libgtkmm-2.4.so:x11-toolkits/gtkmm24
BROKEN_powerpc64= fails to build: Socket.cpp: 'strerror' was not declared in this scope
USES= compiler:c++11-lang pathfix pkgconfig gettext
USE_CXXSTD= c++11
USE_GNOME= gnomeprefix
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --disable-kde
OPTIONS_DEFINE= DOCS
post-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for file in AUTHORS ChangeLog TODO README
${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR}
.endfor
.include <bsd.port.mk>
|