Сравнение splash-themes-calculate-15-r3 с splash-themes-calculate-17-r3
| /var/lib/layman/calculate/media-gfx/splash-themes-calculate/splash-themes-calculate-17-r3.ebuild 2020-02-10 17:56:12.000000000 +0300 | ||
|---|---|---|
| 2 | 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 | 3 |
# $Header: $ |
| 4 | 4 | |
| 5 |
EAPI=4 |
|
| 6 | ||
| 7 |
inherit calculate |
|
| 5 |
EAPI=5 |
|
| 8 | 6 | |
| 9 | 7 |
DESCRIPTION="Calculate Linux theme for gensplash" |
| 10 | 8 |
HOMEPAGE="http://www.calculate-linux.org/packages/media-gfx/calculate-splash-themes" |
| ... | ... | |
| 12 | 10 |
LICENSE="Apache-2.0" |
| 13 | 11 |
SLOT="0" |
| 14 | 12 |
KEYWORDS="amd64 x86" |
| 15 |
IUSE="" |
|
| 13 |
IUSE="+verbose +silent +silent-shutdown" |
|
| 14 | ||
| 15 |
REQUIRED_USE="|| ( verbose silent silent-shutdown )" |
|
| 16 | 16 | |
| 17 |
SRC_URI="ftp://ftp.calculate-linux.org/calculate/themes/splash/splash-themes-calculate-15-r2.tar.bz2" |
|
| 17 |
SRC_URI="silent? ( |
|
| 18 |
ftp://ftp.calculate-linux.org/calculate/themes/calculate/splash-silent-17.jpg -> ${PN}-silent-17.jpg
|
|
| 19 |
http://mirror.yandex.ru/calculate/themes/calculate/splash-silent-17.jpg -> ${PN}-silent-17.jpg )
|
|
| 20 |
verbose? ( |
|
| 21 |
ftp://ftp.calculate-linux.org/calculate/themes/calculate/splash-verbose-17-r1.jpg -> ${PN}-verbose-17-r1.jpg
|
|
| 22 |
http://mirror.yandex.ru/calculate/themes/calculate/splash-verbose-17-r1.jpg -> ${PN}-verbose-17-r1.jpg )
|
|
| 23 |
silent-shutdown? ( |
|
| 24 |
ftp://ftp.calculate-linux.org/calculate/themes/calculate/splash-shutdown-17.jpg -> ${PN}-shutdown-17.jpg
|
|
| 25 |
http://mirror.yandex.ru/calculate/themes/calculate/splash-shutdown-17.jpg -> ${PN}-shutdown-17.jpg )"
|
|
| 26 | ||
| 27 |
DEPEND="media-gfx/splashutils |
|
| 28 |
media-fonts/droid |
|
| 29 |
!<sys-apps/calculate-utils-3.5.2.6" |
|
| 30 | ||
| 31 |
# need for templates |
|
| 32 |
RDEPEND="${DEPEND}
|
|
| 33 |
|| ( media-gfx/imagemagick |
|
| 34 |
media-gfx/graphicsmagick )" |
|
| 18 | 35 | |
| 19 |
RDEPEND="media-gfx/splashutils |
|
| 20 |
media-fonts/droid |
|
| 21 |
!media-gfx/cld-themes |
|
| 22 |
!media-gfx/cldg-themes |
|
| 23 |
!media-gfx/cldx-themes |
|
| 24 |
!media-gfx/cls-themes |
|
| 25 |
!media-gfx/cmc-themes |
|
| 26 |
!media-gfx/cds-themes" |
|
| 27 | 36 | |
| 28 |
DEPEND="${RDEPEND}"
|
|
| 37 |
S="${WORKDIR}"
|
|
| 29 | 38 | |
| 30 | 39 |
src_install() {
|
| 31 |
insinto / |
|
| 32 |
doins -r . |
|
| 40 |
insinto /usr/share/themes/Calculate/ |
|
| 41 |
if use silent |
|
| 42 |
then |
|
| 43 |
newins "${DISTDIR}"/${PN}-silent-${PV}.jpg splash-silent.jpg
|
|
| 44 |
fi |
|
| 45 |
if use silent-shutdown |
|
| 46 |
then |
|
| 47 |
newins "${DISTDIR}"/${PN}-shutdown-${PV}.jpg splash-shutdown.jpg
|
|
| 48 |
fi |
|
| 49 |
if use verbose |
|
| 50 |
then |
|
| 51 |
newins "${DISTDIR}"/${PN}-verbose-${PV}-r1.jpg splash-verbose.jpg
|
|
| 52 |
fi |
|
| 33 | 53 |
} |
| 54 | ||