x11-plugins/gkrellm-trayicons: Respect LDFLAGS (#338784 by Michael Mair-Keimberger (iamnr3))

Package-Manager: portage-2.3.0
This commit is contained in:
Pacho Ramos
2016-08-25 14:33:41 +02:00
parent e524752781
commit 81b74aa034
2 changed files with 36 additions and 4 deletions

View File

@@ -0,0 +1,25 @@
--- a/Makefile 2003-11-26 00:27:29.000000000 +0100
+++ b/Makefile_new 2013-03-15 21:36:05.331857288 +0100
@@ -6,19 +6,18 @@
GKRELLM_INCLUDE = -I$(PREFIX)/include
GTK_CFLAGS = `$(GTK_CONFIG) --cflags`
GTK_LIB = `$(GTK_CONFIG) --libs`
-FLAGS = -Wall -fPIC $(GTK_CFLAGS) $(GKRELLM_INCLUDE)
-CFLAGS ?= -O -g
+FLAGS = -fPIC $(GTK_CFLAGS) $(GKRELLM_INCLUDE)
CFLAGS += $(FLAGS)
CFLAGS += -DVERSION=\"$(VERSION)\"
LIBS = $(GTK_LIB)
LFLAGS = -shared
-CC ?= gcc
+CC = $(CC)
INSTALL = install -c
INSTALL_PROGRAM = $(INSTALL) -s
OBJS = trayicons.o
trayicons.so: $(OBJS)
- $(CC) $(FLAGS) $(OBJS) -o trayicons.so $(LIBS) $(LFLAGS)
+ $(CC) $(FLAGS) $(LDFLAGS) $(OBJS) -o trayicons.so $(LIBS) $(LFLAGS)
clean:
rm -f *.o core *.so* *.bak *~

View File

@@ -1,16 +1,23 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
inherit gkrellm-plugin
EAPI=6
inherit gkrellm-plugin toolchain-funcs
DESCRIPTION="Configurable Tray Icons for GKrellM"
HOMEPAGE="http://tripie.sweb.cz/gkrellm/trayicons/"
SRC_URI="http://tripie.sweb.cz/gkrellm/trayicons/dist/${P}.tar.gz"
HOMEPAGE="http://gkrellm.srcbox.net/Plugins.html"
SRC_URI="mirror://gentoo/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc sparc x86"
IUSE=""
PATCHES=( "${FILESDIR}"/${P}-ldflags.patch )
PLUGIN_SO=trayicons.so
src_compile() {
emake CC="$(tc-getCC)" LDFLAGS="${LDFLAGS}"
}