forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-libs/libcdio: Bump to version 2.0.0
Package-Manager: Portage-2.3.19, Repoman-2.3.6
- Loading branch information
Lars Wendler
committed
Jan 1, 2018
1 parent
375bde8
commit 8ce0218
Showing
2 changed files
with
74 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
# Copyright 1999-2018 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
inherit autotools libtool ltprune multilib-minimal | ||
|
||
DESCRIPTION="A library to encapsulate CD-ROM reading and control" | ||
HOMEPAGE="https://www.gnu.org/software/libcdio/" | ||
SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" | ||
|
||
LICENSE="GPL-3" | ||
SLOT="0/18" # subslot is based on SONAME | ||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" | ||
IUSE="cddb +cxx minimal static-libs test" | ||
|
||
RDEPEND=" | ||
!minimal? ( | ||
>=sys-libs/ncurses-5.7-r7:0= | ||
cddb? ( >=media-libs/libcddb-1.3.2 ) | ||
) | ||
>=virtual/libiconv-0-r1[${MULTILIB_USEDEP}] | ||
" | ||
DEPEND="${RDEPEND} | ||
sys-apps/sed | ||
sys-devel/gettext | ||
virtual/pkgconfig | ||
test? ( dev-lang/perl ) | ||
" | ||
|
||
DOCS="AUTHORS ChangeLog NEWS README* THANKS TODO" | ||
|
||
MULTILIB_WRAPPED_HEADERS=( | ||
/usr/include/cdio/cdio_config.h | ||
/usr/include/cdio/version.h | ||
) | ||
|
||
src_prepare() { | ||
default | ||
|
||
eautoreconf | ||
|
||
sed \ | ||
-e "s:-lncurses:$($(tc-getPKG_CONFIG) --libs ncurses):g" \ | ||
-i configure || die | ||
|
||
elibtoolize # to prevent -L/usr/lib ending up in the linker line wrt 499510 | ||
} | ||
|
||
multilib_src_configure() { | ||
local util_switch | ||
if ! multilib_is_native_abi || use minimal ; then | ||
util_switch="--without" | ||
else | ||
util_switch="--with" | ||
fi | ||
|
||
# Tests fail if ECONF_SOURCE is not relative | ||
ECONF_SOURCE="../${P}" econf \ | ||
--disable-maintainer-mode \ | ||
$(use_enable cxx) \ | ||
--disable-cpp-progs \ | ||
--disable-example-progs \ | ||
$(use_enable static-libs static) \ | ||
$(use_enable cddb) \ | ||
--disable-vcd-info \ | ||
${util_switch}-{cd-drive,cd-info,cdda-player,cd-read,iso-info,iso-read} | ||
} | ||
|
||
multilib_src_install_all() { | ||
einstalldocs | ||
prune_libtool_files | ||
} |