diff options
author | Alexis Ballier <aballier@gentoo.org> | 2014-12-03 17:09:06 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2014-12-03 17:09:06 +0000 |
commit | 892fdf45cd2fcb5ee7db2ce795f77f27659d1838 (patch) | |
tree | 60295e31e8d144950f8fa524ac3f12126ac7c994 /media-libs/libass | |
parent | remove old (diff) | |
download | gentoo-2-892fdf45cd2fcb5ee7db2ce795f77f27659d1838.tar.gz gentoo-2-892fdf45cd2fcb5ee7db2ce795f77f27659d1838.tar.bz2 gentoo-2-892fdf45cd2fcb5ee7db2ce795f77f27659d1838.zip |
version bump, bug #528758 by tokiclover
Signed-off-by: aballier@gentoo.org
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'media-libs/libass')
-rw-r--r-- | media-libs/libass/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/libass/libass-0.12.0.ebuild | 46 |
2 files changed, 52 insertions, 1 deletions
diff --git a/media-libs/libass/ChangeLog b/media-libs/libass/ChangeLog index 11705b4e75f3..275e1bb996a5 100644 --- a/media-libs/libass/ChangeLog +++ b/media-libs/libass/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/libass # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libass/ChangeLog,v 1.79 2014/10/11 12:48:54 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libass/ChangeLog,v 1.80 2014/12/03 17:09:06 aballier Exp $ + +*libass-0.12.0 (03 Dec 2014) + + 03 Dec 2014; Alexis Ballier <aballier@gentoo.org> +libass-0.12.0.ebuild: + version bump, bug #528758 by tokiclover 11 Oct 2014; Markus Meier <maekke@gentoo.org> libass-0.11.2.ebuild: arm stable, bug #512012 diff --git a/media-libs/libass/libass-0.12.0.ebuild b/media-libs/libass/libass-0.12.0.ebuild new file mode 100644 index 000000000000..c570d1609191 --- /dev/null +++ b/media-libs/libass/libass-0.12.0.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libass/libass-0.12.0.ebuild,v 1.1 2014/12/03 17:09:06 aballier Exp $ + +EAPI=5 +inherit eutils multilib-minimal + +DESCRIPTION="Library for SSA/ASS subtitles rendering" +HOMEPAGE="http://github.com/libass/libass" +SRC_URI="http://github.com/libass/libass/releases/download/${PV}/${P}.tar.xz" + +LICENSE="ISC" +SLOT="0/5" # subslot = libass soname version +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" +IUSE="+enca +fontconfig +harfbuzz static-libs" + +RDEPEND="fontconfig? ( >=media-libs/fontconfig-2.10.92[${MULTILIB_USEDEP}] ) + >=media-libs/freetype-2.5.0.1:2[${MULTILIB_USEDEP}] + >=virtual/libiconv-0-r1[${MULTILIB_USEDEP}] + >=dev-libs/fribidi-0.19.5-r1[${MULTILIB_USEDEP}] + harfbuzz? ( >=media-libs/harfbuzz-0.9.12[truetype,${MULTILIB_USEDEP}] ) + enca? ( >=app-i18n/enca-1.14-r1[${MULTILIB_USEDEP}] )" + +DEPEND="${RDEPEND} + virtual/pkgconfig" + +X86_CPU_OPTS="abi_x86_32 abi_x86_64" +for i in ${X86_CPU_OPTS} ; do + DEPEND="${DEPEND} + ${i}? ( dev-lang/yasm )" +done + +DOCS="Changelog" + +multilib_src_configure() { + ECONF_SOURCE="${S}" econf \ + $(use_enable enca) \ + $(use_enable fontconfig) \ + $(use_enable harfbuzz) \ + $(use_enable static-libs static) +} + +multilib_src_install_all() { + einstalldocs + prune_libtool_files +} |