mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
82c3cac0d2
was a stub, provide a real one. While here, pet portlint. Approved by: portmgr (tier-2 blanket) Reported by: swills
35 lines
771 B
Makefile
35 lines
771 B
Makefile
# 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+
|
|
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>
|