diff options
author | Andreas K. Huettel <dilfridge@gentoo.org> | 2021-01-06 20:09:14 +0200 |
---|---|---|
committer | Andreas K. Huettel <dilfridge@gentoo.org> | 2021-01-06 21:07:33 +0200 |
commit | 0e930c78025168ff00afe95a670bf4e72d464d3e (patch) | |
tree | 5ed5a8f3a23c8d77bdf96caf1f4222fab81332cd /gnustep-apps | |
parent | sci-electronics/fasthenry: Remove old (diff) | |
download | gentoo-0e930c78025168ff00afe95a670bf4e72d464d3e.tar.gz gentoo-0e930c78025168ff00afe95a670bf4e72d464d3e.tar.bz2 gentoo-0e930c78025168ff00afe95a670bf4e72d464d3e.zip |
gnustep-apps/sogo: Remove old
Bug: https://bugs.gentoo.org/725630
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andreas K. Huettel <dilfridge@gentoo.org>
Diffstat (limited to 'gnustep-apps')
-rw-r--r-- | gnustep-apps/sogo/Manifest | 1 | ||||
-rw-r--r-- | gnustep-apps/sogo/sogo-4.1.1-r1.ebuild | 106 | ||||
-rw-r--r-- | gnustep-apps/sogo/sogo-4.1.1.ebuild | 110 |
3 files changed, 0 insertions, 217 deletions
diff --git a/gnustep-apps/sogo/Manifest b/gnustep-apps/sogo/Manifest index 0edcabd1a94f..cf2ba38a1acc 100644 --- a/gnustep-apps/sogo/Manifest +++ b/gnustep-apps/sogo/Manifest @@ -1,2 +1 @@ -DIST sogo-4.1.1.tar.gz 34492410 BLAKE2B 43c15991eede15b58d22681297d7d2d8031ee189e4b843af7c44e52a915d89d30c181dc52c25e4784b0e9011f5d6f22bf070b9125491fe37360ced2b623c0f86 SHA512 e24d4b7f71eeed05dcb694ee07a03df6ac9a63d7fb9455f972add9c251f85e1418683a95de5b584b0db3a471d593c8595b343db1345fcb95235ba59a09235d5a DIST sogo-4.3.2.tar.gz 34497548 BLAKE2B fd9e225488bbdb13b4204d1cec9ba0217049681d531e20db3d995a4928f0cd8ff658eb390a0f84375ee28fec2c7a36fb11d836939a8731e828be8d38728a6559 SHA512 eeae11c2e9c4f3d38e64ebdac4950980859af6486e229d1480c9ceb895b63229b42ceea9a17934bfd5e88c5f05c93567f5df5f29f7d68b7dafcdfc44054bc9af diff --git a/gnustep-apps/sogo/sogo-4.1.1-r1.ebuild b/gnustep-apps/sogo/sogo-4.1.1-r1.ebuild deleted file mode 100644 index 70930df687f4..000000000000 --- a/gnustep-apps/sogo/sogo-4.1.1-r1.ebuild +++ /dev/null @@ -1,106 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit gnustep-2 vcs-snapshot - -DESCRIPTION="Groupware server built around OpenGroupware.org and the SOPE application server" -HOMEPAGE="http://www.sogo.nu" -SRC_URI="https://github.com/inverse-inc/sogo/archive/SOGo-${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="activesync gnutls libressl +ssl" - -RDEPEND=" - acct-user/sogo - dev-libs/libmemcached - net-misc/curl - net-misc/memcached - >=gnustep-libs/sope-${PV}[ldap] - activesync? ( dev-libs/libwbxml ) - gnutls? ( net-libs/gnutls:= ) - !gnutls? ( - !libressl? ( dev-libs/openssl:0= ) - libressl? ( dev-libs/libressl:= ) - ) -" -DEPEND="${RDEPEND} - >=gnustep-base/gnustep-make-2.6.3" - -pkg_pretend() { - if use ssl && use gnutls && use libressl ; then - ewarn "You have enabled both gnutls and libressl, but only" - ewarn "one provider can be active. Using gnutls!" - fi -} - -src_prepare() { - gnustep-base_src_prepare - sed -e "s/validateArgs$//" -i configure \ - || die - if use activesync; then - sed -e 's/Tests\/Unit/ActiveSync &/g' \ - -i GNUmakefile || die - fi - - default -} - -src_configure() { - local ssl_provider - if use ssl ; then - if use gnutls ; then - ssl_provider=gnutls - else - ssl_provider=ssl - fi - else - ssl_provider=none - fi - - egnustep_env - - ./configure \ - --disable-strip \ - --prefix=/usr \ - --with-ssl="${ssl_provider}" \ - $(use_enable debug) \ - || die "configure failed" -} - -src_install() { - gnustep-base_src_install - - newconfd "${FILESDIR}"/sogod.confd sogod - newinitd "${FILESDIR}"/sogod.initd sogod - - insinto /etc/logrotate.d - newins Scripts/logrotate sogo - newdoc Apache/SOGo.conf SOGo-Apache.conf - - insinto /etc/sogo - doins Scripts/sogo.conf - - insinto /etc/cron.d - newins Scripts/sogo.cron sogo - keepdir /var/log/sogo - - fowners sogo:sogo /var/log/sogo - fowners -R root:sogo /etc/sogo -} - -pkg_postinst() { - gnustep-base_pkg_postinst - elog "SOGo documentation is available online at:" - elog "http://www.sogo.nu/downloads/documentation.html" - elog - elog "Apache sample configuration file is available in:" - elog "/usr/share/doc/${PF}" - if use activesync; then - ewarn "In order to use the SOGo ActiveSync support code in production environments," - ewarn "you need to get a proper usage license. Check the documentation for details." - fi -} diff --git a/gnustep-apps/sogo/sogo-4.1.1.ebuild b/gnustep-apps/sogo/sogo-4.1.1.ebuild deleted file mode 100644 index e7e2290ee3e0..000000000000 --- a/gnustep-apps/sogo/sogo-4.1.1.ebuild +++ /dev/null @@ -1,110 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit gnustep-2 user vcs-snapshot - -DESCRIPTION="Groupware server built around OpenGroupware.org and the SOPE application server" -HOMEPAGE="http://www.sogo.nu" -SRC_URI="https://github.com/inverse-inc/sogo/archive/SOGo-${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="activesync gnutls libressl +ssl" - -RDEPEND=" - dev-libs/libmemcached - net-misc/curl - net-misc/memcached - >=gnustep-libs/sope-${PV}[ldap] - activesync? ( dev-libs/libwbxml ) - gnutls? ( net-libs/gnutls:= ) - !gnutls? ( - !libressl? ( dev-libs/openssl:0= ) - libressl? ( dev-libs/libressl:= ) - ) -" -DEPEND="${RDEPEND} - >=gnustep-base/gnustep-make-2.6.3" - -pkg_pretend() { - if use ssl && use gnutls && use libressl ; then - ewarn "You have enabled both gnutls and libressl, but only" - ewarn "one provider can be active. Using gnutls!" - fi -} - -pkg_setup() { - enewgroup sogo - enewuser sogo -1 /bin/bash /var/lib/sogo sogo -} - -src_prepare() { - gnustep-base_src_prepare - sed -e "s/validateArgs$//" -i configure \ - || die - if use activesync; then - sed -e 's/Tests\/Unit/ActiveSync &/g' \ - -i GNUmakefile || die - fi - - default -} - -src_configure() { - local ssl_provider - if use ssl ; then - if use gnutls ; then - ssl_provider=gnutls - else - ssl_provider=ssl - fi - else - ssl_provider=none - fi - - egnustep_env - - ./configure \ - --disable-strip \ - --prefix=/usr \ - --with-ssl="${ssl_provider}" \ - $(use_enable debug) \ - || die "configure failed" -} - -src_install() { - gnustep-base_src_install - - newconfd "${FILESDIR}"/sogod.confd sogod - newinitd "${FILESDIR}"/sogod.initd sogod - - insinto /etc/logrotate.d - newins Scripts/logrotate sogo - newdoc Apache/SOGo.conf SOGo-Apache.conf - - insinto /etc/sogo - doins Scripts/sogo.conf - - insinto /etc/cron.d - newins Scripts/sogo.cron sogo - keepdir /var/log/sogo - - fowners sogo:sogo /var/log/sogo - fowners -R root:sogo /etc/sogo -} - -pkg_postinst() { - gnustep-base_pkg_postinst - elog "SOGo documentation is available online at:" - elog "http://www.sogo.nu/downloads/documentation.html" - elog - elog "Apache sample configuration file is available in:" - elog "/usr/share/doc/${PF}" - if use activesync; then - ewarn "In order to use the SOGo ActiveSync support code in production environments," - ewarn "you need to get a proper usage license. Check the documentation for details." - fi -} |