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

(-)misc/kcd/Makefile (-3 / +2 lines)
Lines 6-12 Link Here
6
#
6
#
7
7
8
PORTNAME=	kcd
8
PORTNAME=	kcd
9
PORTVERSION=	6.0.0
9
PORTVERSION=	6.4.1
10
CATEGORIES=	misc
10
CATEGORIES=	misc
11
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
11
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
12
MASTER_SITE_SUBDIR=	${PORTNAME}
12
MASTER_SITE_SUBDIR=	${PORTNAME}
Lines 15-26 Link Here
15
15
16
LIB_DEPENDS=	intl.4:${PORTSDIR}/devel/gettext
16
LIB_DEPENDS=	intl.4:${PORTSDIR}/devel/gettext
17
17
18
USE_PERL5=	yes
18
GNU_CONFIGURE=	yes
19
GNU_CONFIGURE=	yes
19
CONFIGURE_TARGET=	--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
20
CONFIGURE_TARGET=	--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
20
CONFIGURE_ENV=	CPPFLAGS="-I${LOCALBASE}/include" \
21
CONFIGURE_ENV=	CPPFLAGS="-I${LOCALBASE}/include" \
21
		LDFLAGS="-L${LOCALBASE}/lib -lintl"
22
		LDFLAGS="-L${LOCALBASE}/lib -lintl"
22
23
CFLAGS+=	-fpermissive
24
23
25
MAN1=		kcd.1
24
MAN1=		kcd.1
26
25
(-)misc/kcd/distinfo (-1 / +1 lines)
Line 1 Link Here
1
MD5 (kcd-6.0.0.tar.gz) = 39fa41ef3a5b1c9560365a4b754d9ac6
1
MD5 (kcd-6.4.1.tar.gz) = d36bc66015d813d696c5425cf440955e
(-)misc/kcd/files/patch-cxxlib.cc (+18 lines)
Line 0 Link Here
1
--- cxxlib.cc.orig	Sun Nov  3 23:49:03 2002
2
+++ cxxlib.cc	Wed Nov  6 09:42:38 2002
3
@@ -48,6 +48,7 @@
4
 	abort();
5
 }
6
 
7
+#ifndef __FreeBSD__
8
 void *operator new (size_t size) CXX__NEW_THROW
9
 {
10
 #ifdef LARGE_MEMORY_THRES
11
@@ -101,6 +102,7 @@
12
 }
13
 
14
 #endif	/* CXX__HAVE_ARRAY_NEW */
15
+#endif
16
 
17
 #ifndef CXX__NEW_THROW_BAD_ALLOC
18
 void	kcd_new_handler()
(-)misc/kcd/files/patch-cxxlib.h (+17 lines)
Line 0 Link Here
1
--- cxxlib.h.orig	Sun Nov  3 23:49:03 2002
2
+++ cxxlib.h	Wed Nov  6 09:41:36 2002
3
@@ -33,12 +33,14 @@
4
 // new/delete operators
5
 //
6
 
7
+#ifndef __FreeBSD__
8
 void *operator new (size_t s) CXX__NEW_THROW;
9
 void operator delete (void *p) CXX__DELETE_THROW;
10
 #ifdef CXX__HAVE_ARRAY_NEW
11
 void *operator new[] (size_t s) CXX__NEW_THROW;
12
 void operator delete[] (void *p) CXX__DELETE_THROW;
13
 #endif	/* CXX__HAVE_ARRAY_NEW */
14
+#endif
15
 
16
 //
17
 // string I/O stream

Return to bug 45441