megacoffee.net Gentoo overlay - legacy mirror
We have moved to Git. This repository is only provided for compatibility with old installations. Learn how to migrate your installation here.
comparison media-gfx/trimage/trimage-1.0.5.ebuild @ 41:8b8b7ef28927
added ebuild for Trimage 1.0.5
author | Daniel Neugebauer <dneuge@energiequant.de> |
---|---|
date | Sat, 28 Sep 2013 16:02:17 +0200 |
parents | |
children | 60f110d900e4 |
comparison
equal
deleted
inserted
replaced
40:4c9709daa1b3 | 41:8b8b7ef28927 |
---|---|
1 # Copyright 1999-2013 Gentoo Foundation | |
2 # Distributed under the terms of the GNU General Public License v2 | |
3 | |
4 EAPI="5" | |
5 PYTHON_COMPAT=( python{ 2_6, 2_7 } ) | |
6 | |
7 | |
8 inherit git-2 | |
9 inherit distutils | |
10 | |
11 DESCRIPTION="GUI for PNG and JPEG optimization via optipng, pngcrush, advpng and jpegoptim" | |
12 HOMEPAGE="http://trimage.org/" | |
13 | |
14 #SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" | |
15 EGIT_REPO_URI="https://github.com/Kilian/Trimage.git" | |
16 EGIT_COMMIT="e460faca7635f52d7e530b80835a847778e7eeac" | |
17 | |
18 LICENSE="MIT" | |
19 SLOT="0" | |
20 KEYWORDS="~amd64 ~x86" | |
21 IUSE="" | |
22 | |
23 # dependencies specified on homepage are outdated (no longer in portage at the time of | |
24 # writing) but slightly newer ones shouldn't be a problem. | |
25 # | |
26 # Original requirements for 1.0.5: | |
27 # python 2.6 | |
28 # python-qt4 4.4 | |
29 # optipng 0.6.2.1 | |
30 # pngcrush 1.6.7 | |
31 # advancecomp 1.15 | |
32 # jpegoptim 1.2.2 | |
33 # | |
34 DEPEND=" | |
35 >=dev-python/PyQt4-4.4 | |
36 <dev-python/PyQt4-4.11 | |
37 | |
38 >=media-gfx/optipng-0.6.2.1 | |
39 <media-gfx/optipng-0.8 | |
40 | |
41 >=media-gfx/pngcrush-1.6.7 | |
42 <media-gfx/pngcrush-1.8 | |
43 | |
44 ~app-arch/advancecomp-1.15[png] | |
45 | |
46 >=media-gfx/jpegoptim-1.2.2 | |
47 <media-gfx/jpegoptim-1.3 | |
48 " |