diff options
author | Steve Dibb <beandog@gentoo.org> | 2011-09-13 00:32:27 +0000 |
---|---|---|
committer | Steve Dibb <beandog@gentoo.org> | 2011-09-13 00:32:27 +0000 |
commit | 5ef1b150c1f97a6c80135eb492c4e80e65f87976 (patch) | |
tree | c23f537cbb8ae31fc5793e4cc13a3b5d6e4e9a65 /media-video/dvdauthor | |
parent | x86 stable per bug 381713 (diff) | |
download | gentoo-2-5ef1b150c1f97a6c80135eb492c4e80e65f87976.tar.gz gentoo-2-5ef1b150c1f97a6c80135eb492c4e80e65f87976.tar.bz2 gentoo-2-5ef1b150c1f97a6c80135eb492c4e80e65f87976.zip |
Version bump, bug 242473
(Portage version: 2.1.9.42/cvs/Linux x86_64)
Diffstat (limited to 'media-video/dvdauthor')
-rw-r--r-- | media-video/dvdauthor/ChangeLog | 7 | ||||
-rw-r--r-- | media-video/dvdauthor/dvdauthor-0.6.18.ebuild | 28 |
2 files changed, 34 insertions, 1 deletions
diff --git a/media-video/dvdauthor/ChangeLog b/media-video/dvdauthor/ChangeLog index 10a681c7677b..2da5505e2016 100644 --- a/media-video/dvdauthor/ChangeLog +++ b/media-video/dvdauthor/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-video/dvdauthor # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/dvdauthor/ChangeLog,v 1.31 2011/02/21 17:43:40 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/dvdauthor/ChangeLog,v 1.32 2011/09/13 00:32:26 beandog Exp $ + +*dvdauthor-0.6.18 (13 Sep 2011) + + 13 Sep 2011; Steve Dibb <beandog@gentoo.org> +dvdauthor-0.6.18.ebuild: + Version bump, bug 242473 21 Feb 2011; Mike Frysinger <vapier@gentoo.org> dvdauthor-0.6.14.ebuild, +files/dvdauthor-0.6.14-libpng-1.5.patch: diff --git a/media-video/dvdauthor/dvdauthor-0.6.18.ebuild b/media-video/dvdauthor/dvdauthor-0.6.18.ebuild new file mode 100644 index 000000000000..b156498bec11 --- /dev/null +++ b/media-video/dvdauthor/dvdauthor-0.6.18.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/dvdauthor/dvdauthor-0.6.18.ebuild,v 1.1 2011/09/13 00:32:27 beandog Exp $ + +EAPI="2" + +inherit eutils + +DESCRIPTION="Tools for generating DVD files to be played on standalone DVD players" +HOMEPAGE="http://dvdauthor.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="" +DEPEND="media-libs/libdvdread + >=media-gfx/imagemagick-5.5.7.14 + >=dev-libs/libxml2-2.6.0 + media-libs/freetype + dev-libs/fribidi + media-libs/libpng" + +S="${WORKDIR}/${PN}" + +src_install() { + emake install DESTDIR="${D}" || die + dodoc README TODO ChangeLog AUTHORS +} |