diff options
author | 2012-11-17 08:11:54 +0000 | |
---|---|---|
committer | 2012-11-17 08:11:54 +0000 | |
commit | 8e1eb0e0a8978bf25b87ef23842f8ac6d8ede6b6 (patch) | |
tree | bab4cb693391aa85b17ad3e5e78868864fc30c6c /sys-process | |
parent | Version bump. (diff) | |
download | gentoo-2-8e1eb0e0a8978bf25b87ef23842f8ac6d8ede6b6.tar.gz gentoo-2-8e1eb0e0a8978bf25b87ef23842f8ac6d8ede6b6.tar.bz2 gentoo-2-8e1eb0e0a8978bf25b87ef23842f8ac6d8ede6b6.zip |
Skip png install for USE=-gtk #443538 by Ivan S. Titov.
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)
Diffstat (limited to 'sys-process')
-rw-r--r-- | sys-process/latencytop/ChangeLog | 6 | ||||
-rw-r--r-- | sys-process/latencytop/files/latencytop-0.5-03-clean-up-build-system.patch | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/sys-process/latencytop/ChangeLog b/sys-process/latencytop/ChangeLog index f10eeaa032a8..b968323a380b 100644 --- a/sys-process/latencytop/ChangeLog +++ b/sys-process/latencytop/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-process/latencytop # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-process/latencytop/ChangeLog,v 1.10 2012/05/03 04:54:03 jdhore Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-process/latencytop/ChangeLog,v 1.11 2012/11/17 08:11:54 vapier Exp $ + + 17 Nov 2012; Mike Frysinger <vapier@gentoo.org> + files/latencytop-0.5-03-clean-up-build-system.patch: + Skip png install for USE=-gtk #443538 by Ivan S. Titov. 03 May 2012; Jeff Horelick <jdhore@gentoo.org> latencytop-0.4.ebuild, latencytop-0.5.ebuild: diff --git a/sys-process/latencytop/files/latencytop-0.5-03-clean-up-build-system.patch b/sys-process/latencytop/files/latencytop-0.5-03-clean-up-build-system.patch index 735ae1c57399..c33c127dab6b 100644 --- a/sys-process/latencytop/files/latencytop-0.5-03-clean-up-build-system.patch +++ b/sys-process/latencytop/files/latencytop-0.5-03-clean-up-build-system.patch @@ -43,7 +43,7 @@ index de24551..9a3cc05 100644 OBJS += gtk_display.o endif -@@ -24,19 +32,15 @@ endif +@@ -24,19 +32,17 @@ endif # libncursesw5-dev package. # @@ -65,7 +65,9 @@ index de24551..9a3cc05 100644 - install -m 0644 *.png $(DESTDIR)/usr/share/latencytop/ + mkdir -p $(DESTDIR)$(DATADIR) $(DESTDIR)$(SBINDIR) $(DESTDIR)$(MAN8DIR) + install -m 0644 latencytop.trans $(DESTDIR)$(DATADIR)/latencytop.trans ++ifeq ($(HAS_GTK_GUI),1) + install -m 0644 *.png $(DESTDIR)$(DATADIR)/ ++endif + install -m 0644 *.8 $(DESTDIR)$(MAN8DIR)/ install -m 0755 latencytop $(DESTDIR)$(SBINDIR)/ -- |