FreeBSD Bugzilla – Attachment 173895 Details for
Bug 212012
[NEW PORT] devel/rtags: Indexer for C and C++
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
shell archive of rtags port
rtags.shar (text/plain), 4.28 KB, created by
wandns
on 2016-08-20 14:02:25 UTC
(
hide
)
Description:
shell archive of rtags port
Filename:
MIME Type:
Creator:
wandns
Created:
2016-08-20 14:02:25 UTC
Size:
4.28 KB
patch
obsolete
># This is a shell archive. Save it in a file, remove anything before ># this line, and then unpack it by entering "sh file". Note, it may ># create directories; files and directories will be owned by you and ># have default permissions. ># ># This archive contains: ># ># rtags ># rtags/pkg-descr ># rtags/distinfo ># rtags/Makefile ># rtags/files ># rtags/files/patch-src_CMakeLists.txt ># rtags/files/patch-src_rct_rct_EventLoop.h ># rtags/pkg-plist ># >echo c - rtags >mkdir -p rtags > /dev/null 2>&1 >echo x - rtags/pkg-descr >sed 's/^X//' >rtags/pkg-descr << 'c9dc29d94c73668507936a7400b114f2' >XRTags is a client/server application that indexes C/C++ code and keeps a >Xpersistent file-based database of references, declarations, definitions, >Xsymbolnames etc. There's also limited support for ObjC/ObjC++. It allows you to >Xfind symbols by name (including nested class and namespace scope). Most >Ximportantly we give you proper follow-symbol and find-references support. >X >XWWW: https://github.com/Andersbakken/rtags >c9dc29d94c73668507936a7400b114f2 >echo x - rtags/distinfo >sed 's/^X//' >rtags/distinfo << '14e11e3bba6a83f72e84a6cdb58bf7d4' >XTIMESTAMP = 1471660285 >XSHA256 (Andersbakken-rtags-v2.3_GH0.tar.gz) = 4922a4917aa98bd3e8a6d8d507e1bfb5269ee7eb2e1c25012cc2d06cec79e858 >XSIZE (Andersbakken-rtags-v2.3_GH0.tar.gz) = 1266774 >XSHA256 (Andersbakken-rct-430c521c_GH0.tar.gz) = f2ce343a2bf7008d758055fd8f915469791ab40c4a7e763cac1141b94b76a37d >XSIZE (Andersbakken-rct-430c521c_GH0.tar.gz) = 118269 >XSHA256 (jeremyong-Selene-1b6b3ff9_GH0.tar.gz) = 7e154d299f6419a6c97c40953b4570db5d8a8b70ad36d620158568378f2a8285 >XSIZE (jeremyong-Selene-1b6b3ff9_GH0.tar.gz) = 28169 >14e11e3bba6a83f72e84a6cdb58bf7d4 >echo x - rtags/Makefile >sed 's/^X//' >rtags/Makefile << '813af5cd4253367829a920458362af24' >X# $FreeBSD$ >X >XPORTNAME= rtags >XPORTVERSION= 2.3 >XDISTVERSIONPREFIX= v >XCATEGORIES= devel >X >XMAINTAINER= wandns@yahoo.fr >XCOMMENT= Code indexer for C and C++ >X >XLICENSE= GPLv3 >X >XUSE_GITHUB= yes >XGH_TUPLE= Andersbakken:rtags:${DISTVERSIONFULL} >XGH_TUPLE+= Andersbakken:rct:430c521c:rct >XGH_TUPLE+= jeremyong:Selene:1b6b3ff9:selene >X >XUSES= lua:53 >XUSES+= cmake >XUSES+= pkgconfig >XUSES+= ssl >XUSES+= shebangfix >X >XLIB_DEPENDS+= libclang.so:devel/llvm38 >X >XSHEBANG_FILES= bin/gcc-rtags-wrapper.sh >X >XCMAKE_ARGS= -DRTAGS_BUILD_CLANG=0 >X >Xpost-extract: >X @${RMDIR} ${WRKSRC}/src/rct >X @${RMDIR} ${WRKSRC}/src/selene >X @${MV} ${WRKSRC_rct} ${WRKSRC}/src/rct >X @${MV} ${WRKSRC_selene} ${WRKSRC}/src/selene >X >X.include <bsd.port.mk> >813af5cd4253367829a920458362af24 >echo c - rtags/files >mkdir -p rtags/files > /dev/null 2>&1 >echo x - rtags/files/patch-src_CMakeLists.txt >sed 's/^X//' >rtags/files/patch-src_CMakeLists.txt << '4312c05f9629d21ad91cfa223c3c6c82' >X--- src/CMakeLists.txt.orig 2016-08-20 12:18:18 UTC >X+++ src/CMakeLists.txt >X@@ -240,7 +240,7 @@ endif () >X install(TARGETS rdm rc rp RUNTIME DESTINATION bin COMPONENT rtags) >X install(FILES ../bin/gcc-rtags-wrapper.sh DESTINATION bin >X PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE) >X-install(FILES ../man/man7/rc.7 ../man/man7/rdm.7 DESTINATION share/man/man7/) >X+install(FILES ../man/man7/rc.7 ../man/man7/rdm.7 DESTINATION man/man7/) >X if (NOT RTAGS_NO_ELISP_FILES) >X install(FILES ${RTAGS_ELISP_SOURCES} DESTINATION ${RTAGS_ELISP_INSTALL_LOCATION}) >X endif () >4312c05f9629d21ad91cfa223c3c6c82 >echo x - rtags/files/patch-src_rct_rct_EventLoop.h >sed 's/^X//' >rtags/files/patch-src_rct_rct_EventLoop.h << '11073e5c058a1896d9525415d51afcb0' >X--- src/rct/rct/EventLoop.h.orig 2016-05-12 01:07:54 UTC >X+++ src/rct/rct/EventLoop.h >X@@ -16,9 +16,9 @@ >X #if defined(HAVE_EPOLL) >X # include <sys/epoll.h> >X #elif defined(HAVE_KQUEUE) >X+# include <sys/types.h> >X # include <sys/event.h> >X # include <sys/time.h> >X-# include <sys/types.h> >X #elif defined(HAVE_SELECT) >X # include <sys/select.h> >X #endif >11073e5c058a1896d9525415d51afcb0 >echo x - rtags/pkg-plist >sed 's/^X//' >rtags/pkg-plist << '1dba3e61e5234cf6fe70a3e4269c26d1' >Xbin/gcc-rtags-wrapper.sh >Xbin/rc >Xbin/rdm >Xbin/rp >Xman/man7/rc.7.gz >Xman/man7/rdm.7.gz >1dba3e61e5234cf6fe70a3e4269c26d1 >exit >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Flags:
koobs
:
maintainer-approval+
Actions:
View
Attachments on
bug 212012
:
173895
|
181492
|
188181