radhermit 15/01/29 01:23:36 Modified: ChangeLog libbdplus-9999.ebuild Added: libbdplus-0.1.2.ebuild Log: Version bump. Simplify ebuild and add static-libs use flag. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Revision Changes Path 1.2 media-libs/libbdplus/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libbdplus/ChangeLog?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libbdplus/ChangeLog?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libbdplus/ChangeLog?r1=1.1&r2=1.2 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/media-libs/libbdplus/ChangeLog,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- ChangeLog 22 Sep 2014 21:35:45 -0000 1.1 +++ ChangeLog 29 Jan 2015 01:23:36 -0000 1.2 @@ -1,6 +1,12 @@ # ChangeLog for media-libs/libbdplus -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libbdplus/ChangeLog,v 1.1 2014/09/22 21:35:45 beandog Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libbdplus/ChangeLog,v 1.2 2015/01/29 01:23:36 radhermit Exp $ + +*libbdplus-0.1.2 (29 Jan 2015) + + 29 Jan 2015; Tim Harder <radher...@gentoo.org> +libbdplus-0.1.2.ebuild, + libbdplus-9999.ebuild: + Version bump. Simplify ebuild and add static-libs use flag. *libbdplus-9999 (22 Sep 2014) *libbdplus-0.1.1 (22 Sep 2014) 1.2 media-libs/libbdplus/libbdplus-9999.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libbdplus/libbdplus-9999.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libbdplus/libbdplus-9999.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libbdplus/libbdplus-9999.ebuild?r1=1.1&r2=1.2 Index: libbdplus-9999.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/media-libs/libbdplus/libbdplus-9999.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- libbdplus-9999.ebuild 22 Sep 2014 21:35:45 -0000 1.1 +++ libbdplus-9999.ebuild 29 Jan 2015 01:23:36 -0000 1.2 @@ -1,39 +1,37 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libbdplus/libbdplus-9999.ebuild,v 1.1 2014/09/22 21:35:45 beandog Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libbdplus/libbdplus-9999.ebuild,v 1.2 2015/01/29 01:23:36 radhermit Exp $ EAPI=5 -AUTOTOOLS_AUTORECONF=1 -AUTOTOOLS_PRUNE_LIBTOOL_FILES=all -SCM="" +inherit autotools-multilib -if [ "${PV#9999}" != "${PV}" ] ; then - SCM="git-r3" +if [[ ${PV} == 9999 ]] ; then + inherit git-r3 EGIT_REPO_URI="git://git.videolan.org/${PN}.git" - SRC_URI="" else SRC_URI="http://ftp.videolan.org/pub/videolan/${PN}/${PV}/${P}.tar.bz2" + KEYWORDS="~amd64 ~x86" fi DESCRIPTION="Blu-ray library for BD+ decryption" HOMEPAGE="http://www.videolan.org/developers/libbdplus.html" -IUSE="aacs" - -inherit autotools-multilib ${SCM} LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="" +IUSE="aacs static-libs" -RDEPEND="dev-libs/libgcrypt +RDEPEND="dev-libs/libgcrypt:0= + dev-libs/libgpg-error aacs? ( >=media-libs/libaacs-0.7.0 )" DEPEND="${RDEPEND}" DOCS="ChangeLog README.txt" -multilib_src_configure() { - ECONF_SOURCE="${S}" econf \ - --disable-optimizations \ +src_configure() { + local myeconfargs=( + --disable-optimizations $(use_with aacs libaacs) + ) + autotools-multilib_src_configure } 1.1 media-libs/libbdplus/libbdplus-0.1.2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libbdplus/libbdplus-0.1.2.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libbdplus/libbdplus-0.1.2.ebuild?rev=1.1&content-type=text/plain Index: libbdplus-0.1.2.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-libs/libbdplus/libbdplus-0.1.2.ebuild,v 1.1 2015/01/29 01:23:36 radhermit Exp $ EAPI=5 inherit autotools-multilib if [[ ${PV} == 9999 ]] ; then inherit git-r3 EGIT_REPO_URI="git://git.videolan.org/${PN}.git" else SRC_URI="http://ftp.videolan.org/pub/videolan/${PN}/${PV}/${P}.tar.bz2" KEYWORDS="~amd64 ~x86" fi DESCRIPTION="Blu-ray library for BD+ decryption" HOMEPAGE="http://www.videolan.org/developers/libbdplus.html" LICENSE="LGPL-2.1" SLOT="0" IUSE="aacs static-libs" RDEPEND="dev-libs/libgcrypt:0= dev-libs/libgpg-error aacs? ( >=media-libs/libaacs-0.7.0 )" DEPEND="${RDEPEND}" DOCS="ChangeLog README.txt" src_configure() { local myeconfargs=( --disable-optimizations $(use_with aacs libaacs) ) autotools-multilib_src_configure }