I've made append-ldflags throw a warning when libraries are passed through it to link them in. The reason is that LDFLAGS should _not_ be used for libraries, as it has to be positioned before the list of objects to link together, while libraries should go after. This mistake in commandline is what causes as-needed to either fail or not apply at all (if LDFLAGS are put at the end). Please fix your package not to pass libraries through LDFLAGS.
Created attachment 159632 [details] Ebuild without append-ldflags I've removed append-ldflags from the ebuild. The biggest difference between 1.0.1 and 1.0.2 is that 1.0.2 has a Makefile. Some unused variables and unused functions have been deleted. The code should behave the same.
Fixed, thanks.