summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* dev-perl/Ace: Cleanup old 1.920.0-r{3,4,5}Kent Fredric2020-08-071-29/+0
| | | | | | | Closes: https://bugs.gentoo.org/723152 Closes: https://bugs.gentoo.org/716266 Package-Manager: Portage-2.3.103, Repoman-2.3.22 Signed-off-by: Kent Fredric <kentnl@gentoo.org>
* dev-perl/Ace: Add CC/AR/LD/RANLIB toolchain loveKent Fredric2020-06-202-0/+566
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This logic is highly experimental, but it does work for me ( though I don't do what ago does with LD because its too spicy ) This set of changes patches acelib so that all gcc/cc/ar calls can be overloaded externally, though this somewhat defeats the point of most of these files, as some of them only differed in wether they said "cc" or "gcc". The downside is I *had* to rework how the elibc_glibc block worked, because as it was *conditional*, and patched lines adjacent to the lines changed in -toolchain.patch, the existing patch could *only* be adapted to work dependent on the -toolchain patch. Instead, the essential variable overrides are performed externally via `make` arguments, as this has the same outcome. Any logic I didn't fully understand I left in place. And I had to get clever with names, because acelib already has an internal variable called "CC", and its value .... contains then entire set of compile parameters for the compiler! Also, the use of these TARGET_ seems to be less prone to conflict with values that do similar things in perl space, where doing something like LD="something-ld" can be fatal, as perl space doesn't expect LD to be an actaul LD, but a CCLD, and passes flags LD doesn't support. But there will *probably* be a few bugs in this approach, I'm no Make wizard. Bug: https://bugs.gentoo.org/723152 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Kent Fredric <kentnl@gentoo.org>
* dev-perl/Ace: Fixes for bugs #637102 and #637330Kent Fredric2018-04-023-0/+85
- Use toolchain-funcs for Darwin support ( #637102 ) - Fix 'non-void function should return a value' ( #637330 ) - Migrate sed patches to git-am patches where possible Closes: https://bugs.gentoo.org/637330 Bug: https://bugs.gentoo.org/637102 Package-Manager: Portage-2.3.24, Repoman-2.3.6