dlan 15/03/20 14:47:36 Added: 0.9.2-systemdsystemunitdir.patch Log: version bump, update to gtk3 dep, add systemdunit patch, proxy for Enrico Tagliavini (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 0xAABEFD55)
Revision Changes Path 1.1 sys-boot/plymouth/files/0.9.2-systemdsystemunitdir.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/plymouth/files/0.9.2-systemdsystemunitdir.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/plymouth/files/0.9.2-systemdsystemunitdir.patch?rev=1.1&content-type=text/plain Index: 0.9.2-systemdsystemunitdir.patch =================================================================== diff --git a/configure.ac b/configure.ac index aad673e..592be5f 100644 --- a/configure.ac +++ b/configure.ac @@ -122,7 +122,12 @@ AM_CONDITIONAL(ENABLE_SYSTEMD_INTEGRATION, [test "$enable_systemd_integration" = if test x$enable_systemd_integration = xyes; then AC_DEFINE(PLY_ENABLE_SYSTEMD_INTEGRATION, 1, [Coordinate boot up with systemd]) - SYSTEMD_UNIT_DIR=$($PKG_CONFIG --variable=systemdsystemunitdir systemd) + AC_ARG_WITH([systemdsystemunitdir], AC_HELP_STRING([--with-systemdsystemunitdir=DIR], + [path to systemd service directory]), [path_systemdunit=${withval}], + [path_systemdunit="`$PKG_CONFIG --variable=systemdsystemunitdir systemd`"]) + if (test -n "${path_systemdunit}"); then + SYSTEMD_UNIT_DIR="${path_systemdunit}" + fi AC_SUBST(SYSTEMD_UNIT_DIR) fi
