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

(-)kscope/Makefile (-2 / +3 lines)
Lines 6-12 Link Here
6
#
6
#
7
7
8
PORTNAME=	kscope
8
PORTNAME=	kscope
9
PORTVERSION=	1.2.0
9
PORTVERSION=	1.3.1
10
CATEGORIES=	devel kde
10
CATEGORIES=	devel kde
11
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
11
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
12
MASTER_SITE_SUBDIR=${PORTNAME}/
12
MASTER_SITE_SUBDIR=${PORTNAME}/
Lines 14-20 Link Here
14
MAINTAINER=	frank@exit.com
14
MAINTAINER=	frank@exit.com
15
COMMENT=	KDE front-end to Cscope
15
COMMENT=	KDE front-end to Cscope
16
16
17
LIB_DEPENDS=	jpeg.9:${PORTSDIR}/graphics/jpeg
17
LIB_DEPENDS=	jpeg.9:${PORTSDIR}/graphics/jpeg \
18
		dotneato.0:${PORTSDIR}/graphics/graphviz
18
RUN_DEPENDS=	exctags:${PORTSDIR}/devel/ctags \
19
RUN_DEPENDS=	exctags:${PORTSDIR}/devel/ctags \
19
		cscope:${PORTSDIR}/devel/cscope
20
		cscope:${PORTSDIR}/devel/cscope
20
21
(-)kscope/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
MD5 (kscope-1.2.0.tar.gz) = 11a3644a9c91b694b635384ece9824bf
1
MD5 (kscope-1.3.1.tar.gz) = c63baca3a19e7a61e0eb309b93f2ecff
2
SIZE (kscope-1.2.0.tar.gz) = 1052522
2
SIZE (kscope-1.3.1.tar.gz) = 1079626
(-)kscope/files/patch-inline (-22 lines)
Lines 1-22 Link Here
1
--- src/kscope.h.orig	Tue May 10 07:41:32 2005
2
+++ src/kscope.h	Thu Jul 28 09:00:22 2005
3
@@ -142,7 +142,7 @@
4
 	bool getSymbol(uint&, QString&, bool bPrompt = true);
5
 	EditorPage* addEditor(const QString&s);
6
 	EditorPage* createEditorPage();
7
-	inline bool isAutoRebuildEnabled();
8
+	bool isAutoRebuildEnabled();
9
 	void loadOpenFiles();
10
 	
11
 private slots:
12
--- src/kscope.cpp.orig	Tue May 10 07:41:32 2005
13
+++ src/kscope.cpp	Thu Jul 28 08:59:22 2005
14
@@ -1118,7 +1118,7 @@
15
  * @return	true if database auto-rebuild is enabled for the current project,
16
  *			false otherwise
17
  */
18
-inline bool KScope::isAutoRebuildEnabled()
19
+bool KScope::isAutoRebuildEnabled()
20
 {
21
 	return (m_pProjMgr->getAutoRebuildTime() >= 0);
22
 }
(-)kscope/files/patch-src_Makefile.in (-8 / +7 lines)
Lines 1-11 Link Here
1
--- src/Makefile.in.orig	Mon Jan 31 14:40:03 2005
1
--- src/Makefile.in.orig	Fri Oct 14 12:51:22 2005
2
+++ src/Makefile.in	Sun Mar 13 13:05:41 2005
2
+++ src/Makefile.in	Sun Oct 30 12:16:54 2005
3
@@ -306,7 +306,7 @@
3
@@ -410,6 +410,7 @@
4
 	`dotneato-config --ldflags | sed -e "s/-L/-R/"`
4
 
5
 
5
 
6
 kscope_LDADD = -ldotneato -lkateinterfaces -lktexteditor $(LIB_KDEUI)
6
 kscope_LDFLAGS = $(KDE_RPATH) $(all_libraries)
7
+kscope_LDADD = -ldotneato -lkateinterfaces -lktexteditor $(LIB_KDEUI) $(LIBPTHREAD)
7
-kscope_LDADD = -lkateinterfaces -lktexteditor $(LIB_KDEUI)
8
+kscope_LDADD = -lkateinterfaces -lktexteditor $(LIB_KDEUI) $(LIBPTHREAD)
9
 
8
 
10
 # this is where the desktop file will go 
9
 # this is where the desktop file will go 
11
 shelldesktopdir = $(kde_appsdir)/Utilities
10
 shelldesktopdir = $(kde_appsdir)/Development

Return to bug 88259