Install this version:
emerge -a =gnustep-libs/sope-5.12.7
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =gnustep-libs/sope-5.12.7
Or alternatively:
emerge --autounmask-write -a =gnustep-libs/sope-5.12.7
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit gnustep-2
DESCRIPTION="A set of frameworks forming a complete Web application server environment"
HOMEPAGE="https://www.sogo.nu/"
SRC_URI="https://github.com/inverse-inc/sope/archive/SOPE-${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-${PN^^}-${PV}"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="gnutls ldap mysql postgres +ssl +xml"
RDEPEND="
virtual/zlib:=
ldap? ( net-nds/openldap:= )
gnutls? ( net-libs/gnutls:= )
!gnutls? (
dev-libs/openssl:0=
)
mysql? ( dev-db/mysql-connector-c:= )
postgres? ( dev-db/postgresql:= )
xml? ( dev-libs/libxml2:2= )
"
DEPEND="${RDEPEND}"
src_configure() {
egnustep_env
local myconf=(
--prefix="${EPREFIX}"
--disable-strip
$(use_enable debug)
$(use_enable ldap openldap)
$(use_enable mysql)
$(use_enable postgres postgresql)
$(use_enable xml)
--with-gnustep
)
if use ssl ; then
if use gnutls ; then
myconf+=( --with-ssl=gnutls )
else
myconf+=( --with-ssl=ssl )
fi
else
myconf+=( --with-ssl=none )
fi
# Non-standard configure script
./configure "${myconf[@]}" || die "configure failed"
}
Manage flags for this package:
euse -i <flag> -p gnustep-libs/sope |
euse -E <flag> -p gnustep-libs/sope |
euse -D <flag> -p gnustep-libs/sope
virtual/zlib:= ldap? ( net-nds/openldap:= ) gnutls? ( net-libs/gnutls:= ) !gnutls? ( dev-libs/openssl:0= ) mysql? ( dev-db/mysql-connector-c:= ) postgres? ( dev-db/postgresql:= ) xml? ( dev-libs/libxml2:2= )
virtual/zlib:= ldap? ( net-nds/openldap:= ) gnutls? ( net-libs/gnutls:= ) !gnutls? ( dev-libs/openssl:0= ) mysql? ( dev-db/mysql-connector-c:= ) postgres? ( dev-db/postgresql:= ) xml? ( dev-libs/libxml2:2= )
| Type | File | Size | Source URLs |
|---|---|---|---|
| DIST | sope-5.12.7.tar.gz | 2228334 bytes | https://github.com/inverse-inc/sope/archive/SOPE-5.12.7.tar.gz |