Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/mypaint/files/
Date: Wed, 04 Jan 2017 10:16:03
Message-Id: 1483524875.aa9319e56ca9395856305ec64174d5d6ec03be42.soap@gentoo
1 commit: aa9319e56ca9395856305ec64174d5d6ec03be42
2 Author: Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Tue Dec 27 20:01:48 2016 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 4 10:14:35 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa9319e5
7
8 media-gfx/mypaint: remove unused patch
9
10 Closes: https://github.com/gentoo/gentoo/pull/3255
11
12 media-gfx/mypaint/files/mypaint-0.9.0-gentoo.patch | 26 ----------------------
13 1 file changed, 26 deletions(-)
14
15 diff --git a/media-gfx/mypaint/files/mypaint-0.9.0-gentoo.patch b/media-gfx/mypaint/files/mypaint-0.9.0-gentoo.patch
16 deleted file mode 100644
17 index 329c8a9..00000000
18 --- a/media-gfx/mypaint/files/mypaint-0.9.0-gentoo.patch
19 +++ /dev/null
20 @@ -1,26 +0,0 @@
21 -Index: mypaint-0.9.0/SConstruct
22 -===================================================================
23 ---- mypaint-0.9.0.orig/SConstruct
24 -+++ mypaint-0.9.0/SConstruct
25 -@@ -64,6 +64,21 @@ if env['debug']:
26 - env.Append(CPPDEFINES='HEAVY_DEBUG')
27 - env.Append(CCFLAGS='-O0', LINKFLAGS='-O0')
28 -
29 -+# Respect cxxflags,ldflags and cxx
30 -+# Code found on
31 -+# http://http://dev.gentoo.org/~vapier/scons-blows.txt
32 -+import SCons.Util
33 -+if os.environ.has_key('CC'):
34 -+ env['CC'] = os.environ['CC']
35 -+if os.environ.has_key('CFLAGS'):
36 -+ env['CCFLAGS'] += SCons.Util.CLVar(os.environ['CFLAGS'])
37 -+if os.environ.has_key('CXX'):
38 -+ env['CXX'] = os.environ['CXX']
39 -+if os.environ.has_key('CXXFLAGS'):
40 -+ env['CXXFLAGS'] += SCons.Util.CLVar(os.environ['CXXFLAGS'])
41 -+if os.environ.has_key('LDFLAGS'):
42 -+ env['LINKFLAGS'] += SCons.Util.CLVar(os.environ['LDFLAGS'])
43 -+
44 - Export('env')
45 - module = SConscript('lib/SConscript')
46 - SConscript('brushlib/SConscript')