diff options
author | Alexis Ballier <aballier@gentoo.org> | 2010-08-13 09:00:59 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2010-08-13 09:00:59 +0000 |
commit | 03d14911e4f8b010854f13da04da51f78c339449 (patch) | |
tree | 40d2abebff614c9cc6c50504ef825c85ca460e0d /media-libs/libass | |
parent | Version bump: minor bug fixes. (diff) | |
download | gentoo-2-03d14911e4f8b010854f13da04da51f78c339449.tar.gz gentoo-2-03d14911e4f8b010854f13da04da51f78c339449.tar.bz2 gentoo-2-03d14911e4f8b010854f13da04da51f78c339449.zip |
version bump
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'media-libs/libass')
-rw-r--r-- | media-libs/libass/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/libass/libass-0.9.11.ebuild | 35 |
2 files changed, 41 insertions, 1 deletions
diff --git a/media-libs/libass/ChangeLog b/media-libs/libass/ChangeLog index ac94c7a42c0b..464edb0d49a7 100644 --- a/media-libs/libass/ChangeLog +++ b/media-libs/libass/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/libass # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libass/ChangeLog,v 1.30 2010/08/07 21:22:54 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libass/ChangeLog,v 1.31 2010/08/13 09:00:59 aballier Exp $ + +*libass-0.9.11 (13 Aug 2010) + + 13 Aug 2010; Alexis Ballier <aballier@gentoo.org> +libass-0.9.11.ebuild: + version bump *libass-0.9.10 (07 Aug 2010) diff --git a/media-libs/libass/libass-0.9.11.ebuild b/media-libs/libass/libass-0.9.11.ebuild new file mode 100644 index 000000000000..b9822edcaa02 --- /dev/null +++ b/media-libs/libass/libass-0.9.11.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libass/libass-0.9.11.ebuild,v 1.1 2010/08/13 09:00:59 aballier Exp $ + +EAPI=2 + +DESCRIPTION="Library for SSA/ASS subtitles rendering" +HOMEPAGE="http://code.google.com/p/libass/" +SRC_URI="http://libass.googlecode.com/files/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" +IUSE="enca +fontconfig png" + +RDEPEND="fontconfig? ( >=media-libs/fontconfig-2.4.2 ) + >=media-libs/freetype-2.2.1 + png? ( >=media-libs/libpng-1.2.43-r2:0 ) + virtual/libiconv + enca? ( app-i18n/enca )" + +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_configure() { + econf \ + $(use_enable enca) \ + $(use_enable fontconfig) \ + $(use_enable png) +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc Changelog +} |