mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-03 13:27:28 -08:00
Disclaimer : do not expect quality ebuild code here, this has been the
path-of-least-resistance adaptation of the original EAPI-5 ebuild to one
which both uses a modern EAPI, does not try to install /usr/{etc,log}
and does not require generating a custom distfile (yes, 15 MB is much
more than 50 kB; no, I don't think such a size difference is now worth
the trouble of maintaining custom distfiles for a m-n package). No idea
if we really need that empty directory in vendor_perl, for one.
DIST_TEST has been set to "skip" because leaving it at default causes
src_test() to fail owing to the fact the upstream makefile has no target
"test".
Closes: https://bugs.gentoo.org/800605
Bug: https://bugs.gentoo.org/826422
Signed-off-by: Marek Szuba <marecki@gentoo.org>
12 lines
356 B
Diff
12 lines
356 B
Diff
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -18,8 +18,6 @@
|
|
@[ -d $(BASE)/bin ] || mkdir $(BASE)/bin
|
|
@[ -d $(BASE)/lib ] || mkdir $(BASE)/lib
|
|
@[ -d $(BASE)/sbin ] || mkdir $(BASE)/sbin
|
|
- @[ -d $(BASE)/log ] || mkdir $(BASE)/log
|
|
- @[ -d $(BASE)/etc ] || mkdir $(BASE)/etc
|
|
for f in $(BINS); do \
|
|
rm -f $(BASE)/bin/$$f; \
|
|
cp -p $$f $(BASE)/bin/$$f; \
|