diff options
author | Akinori Hattori <hattya@gentoo.org> | 2017-07-08 15:49:59 +0900 |
---|---|---|
committer | Akinori Hattori <hattya@gentoo.org> | 2017-07-08 15:49:59 +0900 |
commit | 98fc3da5328a90e90d93fe6fddd3aec964f579c0 (patch) | |
tree | b733c4a3f3c536108e72fcc17bf32c36d042db25 /app-i18n/canna | |
parent | dev-db/m17n-db: block dev-db/m17n-contrib (diff) | |
download | gentoo-98fc3da5328a90e90d93fe6fddd3aec964f579c0.tar.gz gentoo-98fc3da5328a90e90d93fe6fddd3aec964f579c0.tar.bz2 gentoo-98fc3da5328a90e90d93fe6fddd3aec964f579c0.zip |
app-i18n/canna: remove pkg_prerm and pkg_postrm
Gentoo-Bug: 328693
Package-Manager: Portage-2.3.6, Repoman-2.3.1
Diffstat (limited to 'app-i18n/canna')
-rw-r--r-- | app-i18n/canna/canna-3.7_p3-r1.ebuild | 26 | ||||
-rw-r--r-- | app-i18n/canna/canna-3.7_p3-r2.ebuild | 24 |
2 files changed, 1 insertions, 49 deletions
diff --git a/app-i18n/canna/canna-3.7_p3-r1.ebuild b/app-i18n/canna/canna-3.7_p3-r1.ebuild index 1153ee9dc23d..51effafc6b77 100644 --- a/app-i18n/canna/canna-3.7_p3-r1.ebuild +++ b/app-i18n/canna/canna-3.7_p3-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 inherit cannadic eutils multilib @@ -19,7 +19,6 @@ DEPEND=">=sys-apps/sed-4 x11-misc/gccmakedep x11-misc/imake" RDEPEND="" - S="${WORKDIR}/${MY_P}" src_unpack() { @@ -118,26 +117,3 @@ pkg_postinst() { elog "You should rebuild app-dict/canna-* after emerge." elog } - -pkg_prerm() { - if [ -S /tmp/.iroha_unix/IROHA ] ; then - # make sure cannaserver get stopped because otherwise - # we cannot stop it with /etc/init.d after emerge -C canna - einfo - einfo "Stopping Canna for safe unmerge" - einfo - /etc/init.d/canna stop - touch "${T}"/canna.cookie - fi -} - -pkg_postrm() { - if [ -f /usr/sbin/cannaserver -a -e "${T}"/canna.cookie ] ; then - #update-cannadic-dir - einfo - einfo "Restarting Canna" - einfo - /etc/init.d/canna start - rm -f "${T}"/canna.cookie - fi -} diff --git a/app-i18n/canna/canna-3.7_p3-r2.ebuild b/app-i18n/canna/canna-3.7_p3-r2.ebuild index 1f4b241bce4a..0f222e9dac21 100644 --- a/app-i18n/canna/canna-3.7_p3-r2.ebuild +++ b/app-i18n/canna/canna-3.7_p3-r2.ebuild @@ -26,7 +26,6 @@ DEPEND=">=sys-apps/sed-4 dev-texlive/texlive-latexrecommended )" RDEPEND="" - S="${WORKDIR}/${MY_P}" src_unpack() { @@ -141,26 +140,3 @@ pkg_postinst() { elog fi } - -pkg_prerm() { - if [ -S /tmp/.iroha_unix/IROHA ] ; then - # make sure cannaserver get stopped because otherwise - # we cannot stop it with /etc/init.d after emerge -C canna - einfo - einfo "Stopping Canna for safe unmerge" - einfo - /etc/init.d/canna stop - touch "${T}"/canna.cookie - fi -} - -pkg_postrm() { - if [ -f /usr/sbin/cannaserver -a -e "${T}"/canna.cookie ] ; then - #update-cannadic-dir - einfo - einfo "Restarting Canna" - einfo - /etc/init.d/canna start - rm -f "${T}"/canna.cookie - fi -} |