diff options
author | Christian Faulhammer <fauli@gentoo.org> | 2012-07-17 19:14:27 +0000 |
---|---|---|
committer | Christian Faulhammer <fauli@gentoo.org> | 2012-07-17 19:14:27 +0000 |
commit | 923180ce0a381589754123dd76402a6256c30b2a (patch) | |
tree | 5f9e753100c11b2447aacb9c21cb4aeffd903538 /www-apps/curator | |
parent | Version bump (diff) | |
download | gentoo-2-923180ce0a381589754123dd76402a6256c30b2a.tar.gz gentoo-2-923180ce0a381589754123dd76402a6256c30b2a.tar.bz2 gentoo-2-923180ce0a381589754123dd76402a6256c30b2a.zip |
version bump from SCM snapshot and fixing bugs 316967 (Python handling) and 314385 (dependency on imagemagick)
(Portage version: 2.1.10.65/cvs/Linux i686)
Diffstat (limited to 'www-apps/curator')
-rw-r--r-- | www-apps/curator/ChangeLog | 11 | ||||
-rw-r--r-- | www-apps/curator/curator-3.0_p20110120.ebuild | 39 |
2 files changed, 48 insertions, 2 deletions
diff --git a/www-apps/curator/ChangeLog b/www-apps/curator/ChangeLog index 8a80f793411f..23d6e2d11493 100644 --- a/www-apps/curator/ChangeLog +++ b/www-apps/curator/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for www-apps/curator -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-apps/curator/ChangeLog,v 1.8 2008/02/19 11:57:36 hollow Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/www-apps/curator/ChangeLog,v 1.9 2012/07/17 19:14:27 fauli Exp $ + +*curator-3.0_p20110120 (17 Jul 2012) + + 17 Jul 2012; Christian Faulhammer <fauli@gentoo.org> curator-2.1.ebuild, + +curator-3.0_p20110120.ebuild: + version bump from SCM snapshot and fixing bugs 316967 (Python handling) and + 314385 (dependency on imagemagick) 19 Feb 2008; Benedikt Böhm <hollow@gentoo.org> metadata.xml, curator-2.0.ebuild, curator-2.1.ebuild: diff --git a/www-apps/curator/curator-3.0_p20110120.ebuild b/www-apps/curator/curator-3.0_p20110120.ebuild new file mode 100644 index 000000000000..152e69e160f4 --- /dev/null +++ b/www-apps/curator/curator-3.0_p20110120.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-apps/curator/curator-3.0_p20110120.ebuild,v 1.1 2012/07/17 19:14:27 fauli Exp $ + +EAPI=4 + +PYTHON_DEPEND="2" + +inherit python + +DESCRIPTION="Gallery generator" +HOMEPAGE="http://furius.ca/curator/" +SRC_URI="mirror://gentoo/curator-3.0_pf078f1686a78.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc ~x86" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND} + dev-python/imaging + || ( >=media-gfx/imagemagick-5.4.9 media-gfx/graphicsmagick[imagemagick] )" + +S="${WORKDIR}/curator-3.0_pf078f1686a78" + +pkg_setup() { + python_pkg_setup + python_set_active_version 2 +} +src_compile() { + : +} + +src_install() { + dobin hs/curator-hs + insinto /usr/share/curator/hs + doins -r hs/* +} |