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.
49 lines
1002 B
49 lines
1002 B
# Copyright 1999-2016 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=5
|
|
|
|
inherit multilib multilib-minimal toolchain-funcs
|
|
|
|
DESCRIPTION="Wrapper around libudev.so.1 for packages needing the old libudev.so.0"
|
|
HOMEPAGE="http://gentoo.org/"
|
|
SRC_URI=""
|
|
|
|
LICENSE="LGPL-2.1+"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
DEPEND="virtual/libudev:0/1[${MULTILIB_USEDEP}]"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_unpack() {
|
|
mkdir "${S}" || die
|
|
cp "${FILESDIR}"/udev_old.c "${S}" || die
|
|
}
|
|
|
|
multilib_src_configure() { :; }
|
|
|
|
echo_and_run() {
|
|
echo "$@"
|
|
"$@"
|
|
}
|
|
|
|
multilib_src_compile() {
|
|
# Note: --no-as-needed is used explictly here to ensure that libudev.so.1
|
|
# is pulled in, even though nothing in udev_old.c otherwise requires it
|
|
echo_and_run $(tc-getCC) \
|
|
${CFLAGS} ${CPPFLAGS} ${LDFLAGS} \
|
|
-fpic -shared \
|
|
-Wl,-soname,libudev.so.0 \
|
|
-o libudev.so.0 \
|
|
"${S}"/udev_old.c \
|
|
-Wl,--no-as-needed \
|
|
-ludev || die
|
|
}
|
|
|
|
multilib_src_install() {
|
|
dolib.so libudev.so.0
|
|
}
|