diff options
author | Michael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com> | 2016-12-27 21:01:48 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-01-04 12:14:35 +0200 |
commit | aa9319e56ca9395856305ec64174d5d6ec03be42 (patch) | |
tree | d902ba7ead3aec85c2863824afc26dcf80c61579 /media-gfx/mypaint | |
parent | media-gfx/sam2p: remove unused patches (diff) | |
download | gentoo-aa9319e56ca9395856305ec64174d5d6ec03be42.tar.gz gentoo-aa9319e56ca9395856305ec64174d5d6ec03be42.tar.bz2 gentoo-aa9319e56ca9395856305ec64174d5d6ec03be42.zip |
media-gfx/mypaint: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/3255
Diffstat (limited to 'media-gfx/mypaint')
-rw-r--r-- | media-gfx/mypaint/files/mypaint-0.9.0-gentoo.patch | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/media-gfx/mypaint/files/mypaint-0.9.0-gentoo.patch b/media-gfx/mypaint/files/mypaint-0.9.0-gentoo.patch deleted file mode 100644 index 329c8a981e6f..000000000000 --- a/media-gfx/mypaint/files/mypaint-0.9.0-gentoo.patch +++ /dev/null @@ -1,26 +0,0 @@ -Index: mypaint-0.9.0/SConstruct -=================================================================== ---- mypaint-0.9.0.orig/SConstruct -+++ mypaint-0.9.0/SConstruct -@@ -64,6 +64,21 @@ if env['debug']: - env.Append(CPPDEFINES='HEAVY_DEBUG') - env.Append(CCFLAGS='-O0', LINKFLAGS='-O0') - -+# Respect cxxflags,ldflags and cxx -+# Code found on -+# http://http://dev.gentoo.org/~vapier/scons-blows.txt -+import SCons.Util -+if os.environ.has_key('CC'): -+ env['CC'] = os.environ['CC'] -+if os.environ.has_key('CFLAGS'): -+ env['CCFLAGS'] += SCons.Util.CLVar(os.environ['CFLAGS']) -+if os.environ.has_key('CXX'): -+ env['CXX'] = os.environ['CXX'] -+if os.environ.has_key('CXXFLAGS'): -+ env['CXXFLAGS'] += SCons.Util.CLVar(os.environ['CXXFLAGS']) -+if os.environ.has_key('LDFLAGS'): -+ env['LINKFLAGS'] += SCons.Util.CLVar(os.environ['LDFLAGS']) -+ - Export('env') - module = SConscript('lib/SConscript') - SConscript('brushlib/SConscript') |