You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
676 B
37 lines
676 B
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
DESCRIPTION="Shared Memory Abstraction Library"
|
|
HOMEPAGE="http://www.ossp.org/pkg/lib/mm/"
|
|
SRC_URI="ftp://ftp.ossp.org/pkg/lib/mm/${P}.tar.gz"
|
|
|
|
LICENSE="mm"
|
|
SLOT="1.2"
|
|
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 s390 sparc x86"
|
|
IUSE=""
|
|
|
|
src_prepare() {
|
|
default
|
|
sed -i Makefile.in \
|
|
-e '/--mode=link/s| -o | $(LDFLAGS)&|g' \
|
|
|| die "sed Makefile.in"
|
|
}
|
|
|
|
src_configure() {
|
|
econf --disable-static
|
|
}
|
|
|
|
src_test() {
|
|
emake test
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
dodoc PORTING
|
|
|
|
# no static archive installed
|
|
find "${D}" -name '*.la' -delete || die
|
|
}
|