Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 766192
Collapse All | Expand All

(-)a/media-libs/libdvdcss/libdvdcss-1.4.2.ebuild (-15 / +12 lines)
Lines 1-9 Link Here
1
# Copyright 1999-2021 Gentoo Authors
1
# Copyright 1999-2021 Gentoo Authors
2
# Distributed under the terms of the GNU General Public License v2
2
# Distributed under the terms of the GNU General Public License v2
3
3
4
EAPI=5
4
EAPI=7
5
5
6
inherit autotools-multilib
6
inherit multilib-minimal
7
7
8
DESCRIPTION="A portable abstraction library for DVD decryption"
8
DESCRIPTION="A portable abstraction library for DVD decryption"
9
HOMEPAGE="https://www.videolan.org/developers/libdvdcss.html"
9
HOMEPAGE="https://www.videolan.org/developers/libdvdcss.html"
Lines 12-30 SRC_URI="https://download.videolan.org/pub/${PN}/${PV}/${P}.tar.bz2" Link Here
12
LICENSE="GPL-2"
12
LICENSE="GPL-2"
13
SLOT="1.2"
13
SLOT="1.2"
14
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris"
14
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris"
15
IUSE="doc static-libs"
15
IUSE="doc"
16
16
17
RDEPEND=""
17
BDEPEND="doc? ( app-doc/doxygen )"
18
DEPEND="${RDEPEND}
19
	doc? ( app-doc/doxygen )"
20
18
21
#DOCS=( AUTHORS ChangeLog NEWS README )
19
multilib_src_configure() {
22
20
	ECONF_SOURCE=${S} econf \
23
src_configure() {
21
		--disable-static \
24
	local myeconfargs=(
22
		$(multilib_native_use_enable doc)
25
		$(use_enable doc)
23
}
26
		--htmldir=/usr/share/doc/${PF}/html
27
	)
28
24
29
	autotools-multilib_src_configure
25
multilib_src_install_all() {
26
	einstalldocs
27
	find "${ED}" -type f -name '*.la' -delete || die
30
}
28
}
31
- 

Return to bug 766192