diff options
author | Alexis Ballier <aballier@gentoo.org> | 2012-10-17 19:09:06 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2012-10-17 19:09:06 +0000 |
commit | 92591117275c205f167a589c09594886eadcd8b9 (patch) | |
tree | d6f4277a9c1008011695500552b815257b8f74ca /media-libs | |
parent | arm stable, bug #438146 (diff) | |
download | gentoo-2-92591117275c205f167a589c09594886eadcd8b9.tar.gz gentoo-2-92591117275c205f167a589c09594886eadcd8b9.tar.bz2 gentoo-2-92591117275c205f167a589c09594886eadcd8b9.zip |
version bump
(Portage version: 2.2.0_alpha140/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/libass/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/libass/libass-0.10.1.ebuild | 40 |
2 files changed, 46 insertions, 1 deletions
diff --git a/media-libs/libass/ChangeLog b/media-libs/libass/ChangeLog index 1c83edfd2453..18931fe1e47e 100644 --- a/media-libs/libass/ChangeLog +++ b/media-libs/libass/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/libass # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libass/ChangeLog,v 1.52 2012/05/15 13:02:07 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libass/ChangeLog,v 1.53 2012/10/17 19:09:06 aballier Exp $ + +*libass-0.10.1 (17 Oct 2012) + + 17 Oct 2012; Alexis Ballier <aballier@gentoo.org> +libass-0.10.1.ebuild: + version bump 15 May 2012; Alexis Ballier <aballier@gentoo.org> libass-0.10.0.ebuild: keyword ~amd64-fbsd diff --git a/media-libs/libass/libass-0.10.1.ebuild b/media-libs/libass/libass-0.10.1.ebuild new file mode 100644 index 000000000000..1acacb57994d --- /dev/null +++ b/media-libs/libass/libass-0.10.1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libass/libass-0.10.1.ebuild,v 1.1 2012/10/17 19:09:06 aballier Exp $ + +EAPI=4 + +DESCRIPTION="Library for SSA/ASS subtitles rendering" +HOMEPAGE="http://code.google.com/p/libass/" +SRC_URI="http://libass.googlecode.com/files/${P}.tar.xz" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~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.4.2 ) + >=media-libs/freetype-2.4:2 + virtual/libiconv + >=dev-libs/fribidi-0.19.0 + harfbuzz? ( >=media-libs/harfbuzz-0.9.5 ) + enca? ( app-i18n/enca )" + +DEPEND="${RDEPEND} + virtual/pkgconfig" + +DOCS="Changelog" + +src_configure() { + econf \ + $(use_enable enca) \ + $(use_enable fontconfig) \ + $(use_enable harfbuzz) \ + $(use_enable static-libs static) +} + +src_install() { + default + + find "${ED}" -name '*.la' -delete +} |