public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-libs/libass: ChangeLog libass-0.9.7.ebuild
@ 2009-08-10 10:19 Alexis Ballier (aballier)
  0 siblings, 0 replies; 2+ messages in thread
From: Alexis Ballier (aballier) @ 2009-08-10 10:19 UTC (permalink / raw
  To: gentoo-commits

aballier    09/08/10 10:19:24

  Modified:             ChangeLog
  Added:                libass-0.9.7.ebuild
  Log:
  version bump
  (Portage version: 2.2_rc37/cvs/Linux x86_64)

Revision  Changes    Path
1.14                 media-libs/libass/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libass/ChangeLog?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libass/ChangeLog?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libass/ChangeLog?r1=1.13&r2=1.14

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libass/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog	27 Jun 2009 09:23:54 -0000	1.13
+++ ChangeLog	10 Aug 2009 10:19:24 -0000	1.14
@@ -1,6 +1,12 @@
 # ChangeLog for media-libs/libass
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libass/ChangeLog,v 1.13 2009/06/27 09:23:54 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libass/ChangeLog,v 1.14 2009/08/10 10:19:24 aballier Exp $
+
+*libass-0.9.7 (10 Aug 2009)
+
+  10 Aug 2009; Alexis Ballier <aballier@gentoo.org> +libass-0.9.7.ebuild,
+  +files/libass-0.9.7-nofc.patch:
+  version bump
 
 *libass-0.9.6 (27 Jun 2009)
 



1.1                  media-libs/libass/libass-0.9.7.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libass/libass-0.9.7.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libass/libass-0.9.7.ebuild?rev=1.1&content-type=text/plain

Index: libass-0.9.7.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libass/libass-0.9.7.ebuild,v 1.1 2009/08/10 10:19:24 aballier Exp $

EAPI=2

inherit eutils

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 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="enca fontconfig png"

RDEPEND="fontconfig? ( >=media-libs/fontconfig-2.2.0 )
	>=media-libs/freetype-2.1.10
	png? ( >=media-libs/libpng-1.2.15 )
	virtual/libiconv
	enca? ( app-i18n/enca )"

DEPEND="${RDEPEND}
	dev-util/pkgconfig"

src_prepare() {
	epatch "${FILESDIR}/${P}-nofc.patch"
}

src_configure() {
	econf \
		$(use_enable enca) \
		$(use_enable fontconfig) \
		$(use_enable png)
}

src_install() {
	emake DESTDIR="${D}" install || die "emake install failed"
	dodoc Changelog
}






^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-libs/libass: ChangeLog libass-0.9.7.ebuild
@ 2009-08-12  8:22 Alexis Ballier (aballier)
  0 siblings, 0 replies; 2+ messages in thread
From: Alexis Ballier (aballier) @ 2009-08-12  8:22 UTC (permalink / raw
  To: gentoo-commits

aballier    09/08/12 08:22:16

  Modified:             ChangeLog libass-0.9.7.ebuild
  Log:
  enable fontconfig by default per upstream recommendations
  (Portage version: 2.2_rc38/cvs/Linux x86_64)

Revision  Changes    Path
1.15                 media-libs/libass/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libass/ChangeLog?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libass/ChangeLog?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libass/ChangeLog?r1=1.14&r2=1.15

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libass/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ChangeLog	10 Aug 2009 10:19:24 -0000	1.14
+++ ChangeLog	12 Aug 2009 08:22:16 -0000	1.15
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/libass
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libass/ChangeLog,v 1.14 2009/08/10 10:19:24 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libass/ChangeLog,v 1.15 2009/08/12 08:22:16 aballier Exp $
+
+  12 Aug 2009; Alexis Ballier <aballier@gentoo.org> libass-0.9.7.ebuild:
+  enable fontconfig by default per upstream recommendations
 
 *libass-0.9.7 (10 Aug 2009)
 



1.2                  media-libs/libass/libass-0.9.7.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libass/libass-0.9.7.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libass/libass-0.9.7.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libass/libass-0.9.7.ebuild?r1=1.1&r2=1.2

Index: libass-0.9.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libass/libass-0.9.7.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libass-0.9.7.ebuild	10 Aug 2009 10:19:24 -0000	1.1
+++ libass-0.9.7.ebuild	12 Aug 2009 08:22:16 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libass/libass-0.9.7.ebuild,v 1.1 2009/08/10 10:19:24 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libass/libass-0.9.7.ebuild,v 1.2 2009/08/12 08:22:16 aballier Exp $
 
 EAPI=2
 
@@ -13,7 +13,7 @@
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
-IUSE="enca fontconfig png"
+IUSE="enca +fontconfig png"
 
 RDEPEND="fontconfig? ( >=media-libs/fontconfig-2.2.0 )
 	>=media-libs/freetype-2.1.10






^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-08-12  8:22 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-10 10:19 [gentoo-commits] gentoo-x86 commit in media-libs/libass: ChangeLog libass-0.9.7.ebuild Alexis Ballier (aballier)
  -- strict thread matches above, loose matches on Subject: below --
2009-08-12  8:22 Alexis Ballier (aballier)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox