forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
media-gfx/birdfont: version bump to 2.15.5
- Loading branch information
Showing
3 changed files
with
65 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
DIST birdfont-2.5.1.tar.xz 1394944 SHA256 114899918abd3163fdcb12c1dd88f07630dff312be535cc6828095608442af8c SHA512 9976a7297900d18181dc5f2ef1c9af274b6986f126b2a499173a02bc5bd5eebb99918e1e4a152e5e304de63f86ae156045dc4a4f1da646c3579ef86f63ff8f5e WHIRLPOOL 028c077737cb0fb23a9d86d1a840885b570d84783d79a3c7610c462f6a7bab0591227b1c6397d1ba69393901c4752cbfe14ad9edd1821d613b89847e2a593d16 | ||
DIST birdfont-2.15.5.tar.xz 2257284 SHA256 5bee9dce0b4e0532665d123fb7acea264768cf213ac088a7eb97ec5bd6a622a6 SHA512 f272917e15a7960ae1a462a85542123cfed501986032ace692e654d4806bed75d36b258d7717761a1a864b00b18d7fb412ac5e83f8ea9805d13893e479f0716e WHIRLPOOL 6d784afd5adcd6582a0574d97ce079b128ed5016879087d089404b167a1c8e2b274588a82491c3b8eb739f74531faaf79f192c53b6022791758c0614ec3906d7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
media-gfx/birdfont/files/birdfont-2.15.5-configure-valac.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
taken from upstream | ||
|
||
From b807c200016fefa9dc5f588c1a88ce08bb61381c Mon Sep 17 00:00:00 2001 | ||
From: Mike Frysinger <[email protected]> | ||
Date: Mon, 16 May 2016 14:01:52 -0400 | ||
Subject: [PATCH] configure: respect --valac option | ||
|
||
Make sure we don't still test `valac` when the compiler has been set to | ||
a specific version/path. | ||
--- | ||
configure | 6 +++--- | ||
1 file changed, 3 insertions(+), 3 deletions(-) | ||
|
||
diff --git a/configure b/configure | ||
index b0a9277..c66d268 100755 | ||
--- a/configure | ||
+++ b/configure | ||
@@ -87,10 +87,10 @@ def has_posixvala (): | ||
print (OKGREEN + 'Using posix profile.' + ENDC) | ||
return 'True' | ||
|
||
-def configure(gtk, libbgee): | ||
+def configure(gtk, libbgee, valac): | ||
global gee | ||
|
||
- if not test_program_version ('valac', 0, 16, 0): | ||
+ if not test_program_version(valac, 0, 16, 0): | ||
print (FAIL + 'valac is too old.' + ENDC) | ||
exit (1) | ||
|
||
@@ -203,7 +203,7 @@ if not options.nonnull: | ||
else: | ||
options.nonnull = True | ||
|
||
-configure(options.gtk, options.gee) | ||
+configure(options.gtk, options.gee, options.valac) | ||
|
||
configfile.write_config(options.prefix) | ||
configfile.write_compile_parameters(options.prefix, | ||
-- | ||
2.8.2 | ||
|