pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

arduino-ctags: successful install



Module Name:	pkgsrc-wip
Committed By:	Chris Lasocki <krz.lasocki%gmail.com@localhost>
Pushed By:	klasocki
Date:		Fri Mar 29 19:02:29 2019 +0000
Changeset:	00822b4cf677b8fea70d36305727dd22b287b6bb

Modified Files:
	arduino-ctags/Makefile
	arduino-ctags/PLIST
	arduino-ctags/distinfo
Added Files:
	arduino-ctags/patches/patch-Makefile.in

Log Message:
arduino-ctags: successful install

arduino-ctags compiles and installs properly. executable named
arduino-ctags for compat reasons

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=00822b4cf677b8fea70d36305727dd22b287b6bb

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 arduino-ctags/Makefile                  |  2 ++
 arduino-ctags/PLIST                     |  2 ++
 arduino-ctags/distinfo                  |  1 +
 arduino-ctags/patches/patch-Makefile.in | 34 +++++++++++++++++++++++++++++++++
 4 files changed, 39 insertions(+)

diffs:
diff --git a/arduino-ctags/Makefile b/arduino-ctags/Makefile
index 05d7054d57..de0c14121f 100644
--- a/arduino-ctags/Makefile
+++ b/arduino-ctags/Makefile
@@ -14,4 +14,6 @@ LICENSE=	gnu-lgpl-v2
 
 GNU_CONFIGURE=	yes
 
+MAKE_INSTALL_FLAGS+= PREFIX=${DESTDIR}${PREFIX}
+INSTALLATION_DIRS+= bin man/man1
 .include "../../mk/bsd.pkg.mk"
diff --git a/arduino-ctags/PLIST b/arduino-ctags/PLIST
index 48d96a5493..5b833480a3 100644
--- a/arduino-ctags/PLIST
+++ b/arduino-ctags/PLIST
@@ -1 +1,3 @@
 @comment $NetBSD$
+bin/arduino-ctags
+man/man1/arduino-ctags.1
diff --git a/arduino-ctags/distinfo b/arduino-ctags/distinfo
index f306537f45..95d663fac1 100644
--- a/arduino-ctags/distinfo
+++ b/arduino-ctags/distinfo
@@ -4,6 +4,7 @@ SHA1 (arduino-ctags-5.8.11.zip) = 10d483cd6085431b349c6b5827e48aee6619c327
 RMD160 (arduino-ctags-5.8.11.zip) = a4bc68c4ff05129f463fb17d2319239afc805a5d
 SHA512 (arduino-ctags-5.8.11.zip) = c52ec982e843ab1b489168258619bb87825f7c413ea1c15389db6449572d30403199c840b1c0391b20387b3e22e9bffaaea8b11f4b124160b1fea9112f7c8aad
 Size (arduino-ctags-5.8.11.zip) = 561013 bytes
+SHA1 (patch-Makefile.in) = bbc7278b7a1ac1645945a8e2a3f2b0ca3f4a3497
 SHA1 (patch-c.c) = b4b8ca5c9a1004731b42bbcd68eb4d4ece642eb1
 SHA1 (patch-debug.h) = 6be59bdad9d9b3251164bf7db1ee56c4e6ace4f6
 SHA1 (patch-eiffel.c) = 3a3ddeff8d43f4c5ec28cd23720305615716f88f
diff --git a/arduino-ctags/patches/patch-Makefile.in b/arduino-ctags/patches/patch-Makefile.in
new file mode 100644
index 0000000000..6f3f9eb21f
--- /dev/null
+++ b/arduino-ctags/patches/patch-Makefile.in
@@ -0,0 +1,34 @@
+$NetBSD$
+
+--- Makefile.in.orig	2016-11-23 09:52:52.000000000 +0000
++++ Makefile.in
+@@ -6,8 +6,8 @@
+ # These are the names of the installed programs, in case you wish to change
+ # them.
+ #
+-CTAGS_PROG = ctags
+-ETAGS_PROG = etags
++CTAGS_PROG = arduino-ctags
++ETAGS_PROG = arduino-etags
+
+ # Set this to the path to your shell (must run Bourne shell commands).
+ #
+@@ -85,12 +85,12 @@ EMAN	= $(ETAGS_PROG).$(manext)
+ #
+ CTAGS_EXEC	= $(CTAGS_PROG)$(EXEEXT)
+ ETAGS_EXEC	= $(ETAGS_PROG)$(EXEEXT)
+-DEST_CTAGS	= $(bindir)/$(CTAGS_EXEC)
+-DEST_ETAGS	= $(bindir)/$(ETAGS_EXEC)
+-DEST_READ_LIB	= $(libdir)/$(READ_LIB)
+-DEST_READ_INC	= $(incdir)/$(READ_INC)
+-DEST_CMAN	= $(man1dir)/$(CMAN)
+-DEST_EMAN	= $(man1dir)/$(EMAN)
++DEST_CTAGS	= $(DESTDIR)$(bindir)/$(CTAGS_EXEC)
++DEST_ETAGS	= $(DESTDIR)$(bindir)/$(ETAGS_EXEC)
++DEST_READ_LIB	= $(DESTDIR)$(libdir)/$(READ_LIB)
++DEST_READ_INC	= $(DESTDIR)$(incdir)/$(READ_INC)
++DEST_CMAN	= $(DESTDIR)$(man1dir)/$(CMAN)
++DEST_EMAN	= $(DESTDIR)$(man1dir)/$(EMAN)
+
+ #
+ # primary rules


Home | Main Index | Thread Index | Old Index