diff options
author | 2015-07-19 15:34:37 +0000 | |
---|---|---|
committer | 2015-07-19 15:34:37 +0000 | |
commit | ebfb56f0636654e908ea2a6b3921bd549596422b (patch) | |
tree | 616c20a57aaee219e01984461c84e4dd0a52b41c /media-gfx/album | |
parent | Bump KBASE_VER to 4.1 Bug #554702. Thanks to jospezial. (diff) | |
download | gentoo-2-ebfb56f0636654e908ea2a6b3921bd549596422b.tar.gz gentoo-2-ebfb56f0636654e908ea2a6b3921bd549596422b.tar.bz2 gentoo-2-ebfb56f0636654e908ea2a6b3921bd549596422b.zip |
Version bump, EAPI=5, allow graphicsmagic; bug 466884 and bug 314263
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0B08240A96F66571)
Diffstat (limited to 'media-gfx/album')
-rw-r--r-- | media-gfx/album/ChangeLog | 7 | ||||
-rw-r--r-- | media-gfx/album/album-4.13.ebuild | 40 |
2 files changed, 46 insertions, 1 deletions
diff --git a/media-gfx/album/ChangeLog b/media-gfx/album/ChangeLog index 33dd70c887e1..28553e20408e 100644 --- a/media-gfx/album/ChangeLog +++ b/media-gfx/album/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-gfx/album # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/album/ChangeLog,v 1.41 2015/05/23 01:11:43 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/album/ChangeLog,v 1.42 2015/07/19 15:34:37 dilfridge Exp $ + +*album-4.13 (19 Jul 2015) + + 19 Jul 2015; Andreas K. Huettel <dilfridge@gentoo.org> +album-4.13.ebuild: + Version bump, EAPI=5, allow graphicsmagic; bug 466884 and bug 314263 23 May 2015; Manuel Rüger <mrueg@gentoo.org> -album-4.02.ebuild, -album-4.06.ebuild: diff --git a/media-gfx/album/album-4.13.ebuild b/media-gfx/album/album-4.13.ebuild new file mode 100644 index 000000000000..39cfb93636dd --- /dev/null +++ b/media-gfx/album/album-4.13.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/album/album-4.13.ebuild,v 1.1 2015/07/19 15:34:37 dilfridge Exp $ + +EAPI=5 + +DESCRIPTION="HTML photo album generator" +HOMEPAGE="http://MarginalHacks.com/Hacks/album/" +SRC_URI="http://marginalhacks.com/bin/album.versions/${P}.tar.gz + http://marginalhacks.com/bin/album.versions/data-4.05.tar.gz" + +LICENSE="marginalhacks" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="doc ffmpeg plugins themes" + +DEPEND="" +RDEPEND="dev-lang/perl + || ( media-gfx/imagemagick media-gfx/graphicsmagick[imagemagick] ) + media-gfx/jhead + ffmpeg? ( virtual/ffmpeg )" + +src_install() { + dobin album + doman album.1 + dodoc License.txt CHANGELOG + use doc && dohtml -r Docs/* + + dodir /usr/share/album + insinto /usr/share/album + cd .. + doins -r lang + use themes && doins -r Themes + use plugins && doins -r plugins +} + +pkg_postinst() { + elog "For some optional tools please browse:" + elog "http://MarginalHacks.com/Hacks/album/tools/" +} |