View | Details | Raw Unified | Return to bug 54192
Collapse All | Expand All

(-)lostirc/Makefile (-7 / +8 lines)
Lines 6-13 Link Here
6
#
6
#
7
7
8
PORTNAME=	lostirc
8
PORTNAME=	lostirc
9
PORTVERSION=	0.2.5
9
PORTVERSION=	0.2.7
10
PORTREVISION=	1
11
CATEGORIES=	irc
10
CATEGORIES=	irc
12
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
11
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
13
MASTER_SITE_SUBDIR=	${PORTNAME}
12
MASTER_SITE_SUBDIR=	${PORTNAME}
Lines 15-21 Link Here
15
MAINTAINER=	rael@vectorstar.net
14
MAINTAINER=	rael@vectorstar.net
16
COMMENT=	LostIRC is a simple and minimal IRC client for X
15
COMMENT=	LostIRC is a simple and minimal IRC client for X
17
16
18
LIB_DEPENDS=	gtkmm-2.0.6:${PORTSDIR}/x11-toolkits/gtk--2 \
17
LIB_DEPENDS=	gtkmm-2:${PORTSDIR}/x11-toolkits/gtk--2 \
19
		intl.4:${PORTSDIR}/devel/gettext
18
		intl.4:${PORTSDIR}/devel/gettext
20
19
21
USE_X_PREFIX=	yes
20
USE_X_PREFIX=	yes
Lines 29-41 Link Here
29
28
30
.include <bsd.port.pre.mk>
29
.include <bsd.port.pre.mk>
31
30
32
.if ${OSVERSION} >= 500113
33
BROKEN=         "Does not compile (bad C++ code)"
34
.endif
35
36
post-patch:
31
post-patch:
37
	${REINPLACE_CMD} -E "s@^(Gnomedir = ).*@\1${PREFIX}/share/gnome/apps/Internet@" ${WRKSRC}/Makefile.am
32
	${REINPLACE_CMD} -E "s@^(Gnomedir = ).*@\1${PREFIX}/share/gnome/apps/Internet@" ${WRKSRC}/Makefile.am
38
	${REINPLACE_CMD} -E "s@(Gnomedir = ).*@\1${PREFIX}/share/gnome/apps/Internet@" ${WRKSRC}/Makefile.in
33
	${REINPLACE_CMD} -E "s@(Gnomedir = ).*@\1${PREFIX}/share/gnome/apps/Internet@" ${WRKSRC}/Makefile.in
34
	${REINPLACE_CMD} -E "s@^(pixmapdir = ).*@\1${PREFIX}/share/gnome/pixmaps@" ${WRKSRC}/Makefile.am
35
	${REINPLACE_CMD} -E "s@(pixmapdir = ).*@\1${PREFIX}/share/gnome/pixmaps@" ${WRKSRC}/Makefile.in
36
37
pre-install:
38
	${REINPLACE_CMD} -E 's|MKINSTALLDIRS = \$$\(top_builddir\)/|MKINSTALLDIRS = |g' ${WRKSRC}/intl/Makefile
39
	${REINPLACE_CMD} -E 's|MKINSTALLDIRS = \$$\(top_builddir\)/|MKINSTALLDIRS = |g' ${WRKSRC}/po/Makefile
39
40
40
post-install:
41
post-install:
41
.if !defined(NOPORTDOCS)
42
.if !defined(NOPORTDOCS)
(-)lostirc/distinfo (-1 / +1 lines)
Line 1 Link Here
1
MD5 (lostirc-0.2.5.tar.gz) = 978eb7dd736c95a1dc1892cf67aec2c2
1
MD5 (lostirc-0.2.7.tar.gz) = 0b6f09dcbcb06076bdc6b17e39456c5c
(-)lostirc/files/patch-src::libirc::Parser.cpp (+11 lines)
Line 0 Link Here
1
--- src/libirc/Parser.cpp.orig	Sat May 31 09:25:44 2003
2
+++ src/libirc/Parser.cpp	Mon Jul  7 00:37:53 2003
3
@@ -681,7 +681,7 @@
4
     ss >> time;
5
 
6
     long date = std::atol(time.c_str());
7
-    time = std::ctime(&date);
8
+    time = std::ctime((const time_t *)&date);
9
 
10
     Channel *c = _conn->findChannel(chan);
11
     assert(c);
(-)lostirc/pkg-plist (-2 / +6 lines)
Lines 1-7 Link Here
1
share/gnome/apps/Internet/lostirc.desktop
1
bin/lostirc
2
lib/charset.alias
2
share/applnk/lostirc.desktop
3
share/applnk/lostirc.desktop
4
share/gnome/apps/Internet/lostirc.desktop
5
share/gnome/pixmaps/lostirc.png
3
share/locale/da/LC_MESSAGES/lostirc.mo
6
share/locale/da/LC_MESSAGES/lostirc.mo
4
bin/lostirc
7
share/locale/locale.alias
5
%%PORTDOCS%%share/doc/lostirc/AUTHORS
8
%%PORTDOCS%%share/doc/lostirc/AUTHORS
6
%%PORTDOCS%%share/doc/lostirc/COPYING
9
%%PORTDOCS%%share/doc/lostirc/COPYING
7
%%PORTDOCS%%share/doc/lostirc/ChangeLog
10
%%PORTDOCS%%share/doc/lostirc/ChangeLog
Lines 9-11 Link Here
9
%%PORTDOCS%%share/doc/lostirc/README
12
%%PORTDOCS%%share/doc/lostirc/README
10
%%PORTDOCS%%share/doc/lostirc/TODO
13
%%PORTDOCS%%share/doc/lostirc/TODO
11
%%PORTDOCS%%@dirrm share/doc/lostirc
14
%%PORTDOCS%%@dirrm share/doc/lostirc
15

Return to bug 54192