diff options
Diffstat (limited to 'sys-apps/gentoo-systemd-integration/gentoo-systemd-integration-8.ebuild')
-rw-r--r-- | sys-apps/gentoo-systemd-integration/gentoo-systemd-integration-8.ebuild | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sys-apps/gentoo-systemd-integration/gentoo-systemd-integration-8.ebuild b/sys-apps/gentoo-systemd-integration/gentoo-systemd-integration-8.ebuild index d6fa26516aad..c5acec8fc6de 100644 --- a/sys-apps/gentoo-systemd-integration/gentoo-systemd-integration-8.ebuild +++ b/sys-apps/gentoo-systemd-integration/gentoo-systemd-integration-8.ebuild @@ -3,6 +3,8 @@ EAPI=7 +inherit systemd + if [[ ${PV} == 9999 ]]; then EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/gentoo-systemd-integration.git" inherit autotools git-r3 @@ -30,3 +32,11 @@ src_prepare() { default [[ ${PV} != 9999 ]] || eautoreconf } + +src_configure() { + local myconf=( + --with-systemdsystemgeneratordir="$(systemd_get_systemgeneratordir)" + --with-systemdsystempresetdir="$(systemd_get_systempresetdir)" + ) + econf "${myconf[@]}" +} |