mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 12:58:16 -07:00
app-crypt/rhash: fix and keyword for Solaris
Package-Manager: Portage-2.3.3, Repoman-2.3.1
This commit is contained in:
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}-src.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc64 ~x86 ~x64-macos ~x86-macos"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc64 ~x86 ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
|
||||
IUSE="debug nls openssl static-libs"
|
||||
|
||||
RDEPEND="openssl? ( dev-libs/openssl:0=[${MULTILIB_USEDEP}] )"
|
||||
@@ -29,8 +29,7 @@ src_prepare() {
|
||||
sed -i -e 's:\$(DESTDIR)/etc:\$(DESTDIR)/$(SYSCONFDIR):g' Makefile || die
|
||||
|
||||
if [[ ${CHOST} == *-darwin* ]] ; then
|
||||
local
|
||||
ver_script='-Wl,--version-script,exports.sym,-soname,$(SONAME)'
|
||||
local ver_script='-Wl,--version-script,exports.sym,-soname,$(SONAME)'
|
||||
local install_name='-install_name $(LIBDIR)/$(SONAME)'
|
||||
sed -i -e '/^\(SONAME\|SHAREDLIB\)/s/\.so\.\([0-9]\+\)/.\1.dylib/' \
|
||||
-e '/^SOLINK/s/\.so/.dylib/' \
|
||||
@@ -39,6 +38,12 @@ src_prepare() {
|
||||
Makefile || die
|
||||
fi
|
||||
|
||||
if [[ ${CHOST} == *-solaris* ]] ; then
|
||||
# https://sourceware.org/bugzilla/show_bug.cgi?id=12548
|
||||
# skip the export.sym for now
|
||||
sed -i -e 's/,--version-script,exports.sym//' librhash/Makefile || die
|
||||
fi
|
||||
|
||||
multilib_copy_sources
|
||||
}
|
||||
|
||||
@@ -53,7 +58,8 @@ multilib_src_compile() {
|
||||
$(use openssl && echo -ldl)
|
||||
)
|
||||
|
||||
[[ ${CHOST} == *-darwin* ]] && ADDLDFLAGS+=( $(use nls && echo -lintl) )
|
||||
[[ ${CHOST} == *-darwin* || ${CHOST} == *-solaris* ]] \
|
||||
&& ADDLDFLAGS+=( $(use nls && echo -lintl) )
|
||||
|
||||
emake CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" CC="$(tc-getCC)" \
|
||||
ADDCFLAGS="${ADDCFLAGS[*]}" ADDLDFLAGS="${ADDLDFLAGS[*]}" \
|
||||
|
||||
Reference in New Issue
Block a user