public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-irc/bitchx/files: bitchx-1.2-build.patch
@ 2013-01-02  0:26 Jeff Horelick (jdhore)
  0 siblings, 0 replies; 2+ messages in thread
From: Jeff Horelick (jdhore) @ 2013-01-02  0:26 UTC (permalink / raw
  To: gentoo-commits

jdhore      13/01/02 00:26:39

  Added:                bitchx-1.2-build.patch
  Log:
  Version bump
  
  (Portage version: 2.2.0_alpha149/cvs/Linux i686, signed Manifest commit with key 23E9E900)

Revision  Changes    Path
1.1                  net-irc/bitchx/files/bitchx-1.2-build.patch

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/bitchx/files/bitchx-1.2-build.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/bitchx/files/bitchx-1.2-build.patch?rev=1.1&content-type=text/plain

Index: bitchx-1.2-build.patch
===================================================================
commit 4c0f8ad621f892ca92d7f2312cc7e0f01798346d
Author: Jeff Horelick <jdhore@gentoo.org>
Date:   Tue Jan 1 19:16:46 2013 -0500

    dll/aim/Makefile.in: Fix parallel building
    
    dll/hint/Makefile.in: BitchX.hints is a data file, not a plugin
    
    dll/Makefile.in: Let portage do the stripping
    
    Makefile.in: Let portage do the compression

diff --git a/Makefile.in b/Makefile.in
index af85e87..1195894 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -284,8 +284,6 @@ installman: installdirs
 			done; \
 		fi; \
 	)
-	(find $(DESTDIR)$(mandir)/man1/BitchX.1 -type f ! -name '*.bz2' ! -name '*.gz' | \
-		(xargs bzip2 -9f || xargs gzip -9f) || :) 2>/dev/null
 
 installdirs:
 	umask 022 && $(top_srcdir)/mkinstalldirs $(DESTDIR)$(bindir) $(DESTDIR)$(IRCLIB) \
diff --git a/dll/Makefile.in b/dll/Makefile.in
index 7034394..3ef4e46 100644
--- a/dll/Makefile.in
+++ b/dll/Makefile.in
@@ -201,12 +201,6 @@ install: all
 			|| case "$$makeflags" in *=*) exit 1;; *k*) ;; *) exit 1;; esac; \
 		done; \
 	)
-	@( \
-		if test x"$(PLUGINS)" != x""; then \
-			strip --strip-unneeded $(DESTDIR)$(PLUGINDIR)/*$(SHLIB_SUFFIX) || :; \
-			echo Your plugins [$(PLUGINS)] are now located in $(PLUGINDIR);\
-		fi; \
-	)
 
 install_local: all
 	$(INSTALL) -d $(local_dir)/.BitchX/plugins
diff --git a/dll/aim/Makefile.in b/dll/aim/Makefile.in
index 52f8afb..c77ca8f 100644
--- a/dll/aim/Makefile.in
+++ b/dll/aim/Makefile.in
@@ -179,7 +179,7 @@ cmd.o: $(srcdir)/cmd.c
 aim.o: $(srcdir)/aim.c
 	$(CC) $(AIMDEFS) $(SHLIB_CFLAGS) $(CFLAGS) -c $(srcdir)/aim.c
 
-aim$(SHLIB_SUFFIX): $(OBJS) 
+aim$(SHLIB_SUFFIX): $(OBJS) toc
 	$(SHLIB_LD) $(OBJS) $(SHLIB_CFLAGS) -o aim$(SHLIB_SUFFIX) -Ltoc -ltoc
 
 dummy:
diff --git a/dll/hint/Makefile.in b/dll/hint/Makefile.in
index 83b4fd9..00d7059 100644
--- a/dll/hint/Makefile.in
+++ b/dll/hint/Makefile.in
@@ -173,4 +173,4 @@ distclean: clean
 
 install:
 	$(INSTALL) $(PLUGIN_NAME)$(SHLIB_SUFFIX) $(DESTDIR)$(PLUGINDIR)
-	$(INSTALL) $(srcdir)/BitchX.hints $(DESTDIR)$(PLUGINDIR)/@HINT_FILE@
+	$(INSTALL_DATA) $(srcdir)/BitchX.hints $(DESTDIR)$(PLUGINDIR)/@HINT_FILE@





^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-irc/bitchx/files: bitchx-1.2-build.patch
@ 2013-01-28 19:32 Jeroen Roovers (jer)
  0 siblings, 0 replies; 2+ messages in thread
From: Jeroen Roovers (jer) @ 2013-01-28 19:32 UTC (permalink / raw
  To: gentoo-commits

jer         13/01/28 19:32:19

  Modified:             bitchx-1.2-build.patch
  Log:
  Do not remove "duplicate" CFLAGS args. Respect LDFLAGS.
  
  (Portage version: 2.2.0_alpha161/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.2                  net-irc/bitchx/files/bitchx-1.2-build.patch

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/bitchx/files/bitchx-1.2-build.patch?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/bitchx/files/bitchx-1.2-build.patch?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/bitchx/files/bitchx-1.2-build.patch?r1=1.1&r2=1.2

Index: bitchx-1.2-build.patch
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/bitchx/files/bitchx-1.2-build.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- bitchx-1.2-build.patch	2 Jan 2013 00:26:39 -0000	1.1
+++ bitchx-1.2-build.patch	28 Jan 2013 19:32:19 -0000	1.2
@@ -63,3 +63,24 @@
  	$(INSTALL) $(PLUGIN_NAME)$(SHLIB_SUFFIX) $(DESTDIR)$(PLUGINDIR)
 -	$(INSTALL) $(srcdir)/BitchX.hints $(DESTDIR)$(PLUGINDIR)/@HINT_FILE@
 +	$(INSTALL_DATA) $(srcdir)/BitchX.hints $(DESTDIR)$(PLUGINDIR)/@HINT_FILE@
+--- a/configure.in
++++ b/configure.in
+@@ -993,18 +993,6 @@
+ done
+ LIBS="$NEW_LIBS"
+ 
+-NEW_CFLAGS=""
+-for CFLAG_IN in $CFLAGS; do
+-	for CFLAG_OUT in $NEW_CFLAGS; do
+-		if test x"$CFLAG_OUT" = x"$CFLAG_IN"; then
+-			CFLAG_IN=""
+-			break
+-		fi
+-	done
+-	NEW_CFLAGS="$NEW_CFLAGS $CFLAG_IN"
+-done
+-CFLAGS="$NEW_CFLAGS"
+-
+ RM="rm -f"
+ CP="cp -f"
+ MV="mv -f"





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-01-28 19:32 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-02  0:26 [gentoo-commits] gentoo-x86 commit in net-irc/bitchx/files: bitchx-1.2-build.patch Jeff Horelick (jdhore)
  -- strict thread matches above, loose matches on Subject: below --
2013-01-28 19:32 Jeroen Roovers (jer)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox