enlightenment: remove systemd build option (#1736)

And use vlicense
This commit is contained in:
beefcurtains 2015-07-01 09:15:49 +00:00
parent 199b2fd53e
commit f7b34c1c2f

View File

@ -1,16 +1,15 @@
# Template file for 'enlightenment' # Template file for 'enlightenment'
pkgname=enlightenment pkgname=enlightenment
version=0.19.5 version=0.19.5
revision=3 revision=4
lib32disabled=yes lib32disabled=yes
# Package build options # Package build options
build_options="systemd wayland" build_options="wayland"
build_style=gnu-configure build_style=gnu-configure
configure_args="--enable-pam --disable-bluez4 $(vopt_enable systemd) configure_args="--enable-pam --disable-bluez4 --disable-systemd
$(vopt_if wayland '--enable-wayland-egl --enable-wayland-clients' '--disable-wayland-egl')" $(vopt_if wayland '--enable-wayland-egl --enable-wayland-clients' '--disable-wayland-egl')"
hostmakedepends="pkg-config efl" hostmakedepends="pkg-config efl"
makedepends="pam-devel pixman-devel elementary-devel makedepends="pam-devel pixman-devel elementary-devel
$(vopt_if systemd systemd-devel)
$(vopt_if wayland 'libxkbcommon-devel MesaLib-devel wayland-devel')" $(vopt_if wayland 'libxkbcommon-devel MesaLib-devel wayland-devel')"
depends="evas_generic_loaders emotion_generic_players hicolor-icon-theme desktop-file-utils" depends="evas_generic_loaders emotion_generic_players hicolor-icon-theme desktop-file-utils"
conf_files="/etc/enlightenment/sysactions.conf" conf_files="/etc/enlightenment/sysactions.conf"
@ -22,15 +21,13 @@ distfiles="http://download.enlightenment.org/rel/apps/${pkgname}/${pkgname}-${ve
checksum=9634464281a58823ead37dc34b6818802378b03b5a293f2f0529c1ec68762939 checksum=9634464281a58823ead37dc34b6818802378b03b5a293f2f0529c1ec68762939
post_install() { post_install() {
if [ -z "$build_option_systemd" ]; then # Use our native tools to shutdown/suspend.
# Use our native tools to shutdown/suspend. sed -i 's/^action:.*halt.*/action: halt shutdown -h now/g' ${DESTDIR}/etc/${pkgname}/sysactions.conf
sed -i 's/^action:.*halt.*/action: halt shutdown -h now/g' ${DESTDIR}/etc/${pkgname}/sysactions.conf sed -i 's/^action:.*reboot.*/action: reboot shutdown -r now/g' ${DESTDIR}/etc/${pkgname}/sysactions.conf
sed -i 's/^action:.*reboot.*/action: reboot shutdown -r now/g' ${DESTDIR}/etc/${pkgname}/sysactions.conf sed -i 's/^action:.*suspend.*/action: suspend zzz/g' ${DESTDIR}/etc/${pkgname}/sysactions.conf
sed -i 's/^action:.*suspend.*/action: suspend zzz/g' ${DESTDIR}/etc/${pkgname}/sysactions.conf sed -i 's/^action:.*hibernate.*/action: hibernate ZZZ/g' ${DESTDIR}/etc/${pkgname}/sysactions.conf
sed -i 's/^action:.*hibernate.*/action: hibernate ZZZ/g' ${DESTDIR}/etc/${pkgname}/sysactions.conf
fi vlicense COPYING
vmkdir usr/share/licenses/${pkgname}
install -m644 COPYING* ${DESTDIR}/usr/share/licenses/${pkgname}
vinstall ${FILESDIR}/e-applications.menu 644 etc/xdg/menus vinstall ${FILESDIR}/e-applications.menu 644 etc/xdg/menus
rm -rf ${DESTDIR}/usr/share/${pkgname}/doc rm -rf ${DESTDIR}/usr/share/${pkgname}/doc
} }