Hi, Based on nzbget-0.5.1.ebuild I've made an ebuild for the 0.6.0 version. This version introduces ssl by using either gnutls or openssl. I've updated the use flags accordingly. I've also updated the ebuild to EAPI 2 and moved user creation and permissions setup around a bit.
Created attachment 193439 [details] nzbget-0.6.0.ebuild
thanks, commited with a few changes. - user creation moved to preinst. pkg_setup also gets called for package-only builds, but we only need the user at runtime, hence we can defer the creation. - ssl logic replaced with $(use_enable ssl tls) \ --with-tlslib=$(use gnutls && echo GnuTLS || echo OpenSSL) \ yes, with --disable-tls we still pass --with-tllsib, but it gets ignored and this makes the ebuild logic simpler. - please don't drop keyword when version bumping - virtual/libstdc++ is mainly needed for binary-only ebuilds that require an older version of libstdc++
Okay - thanks for the tips :)