diff options
author | Pacho Ramos <pacho@gentoo.org> | 2015-04-28 21:18:57 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2015-04-28 21:18:57 +0000 |
commit | 060a05c6368741b77202b9ed1f36e7fd50ce248d (patch) | |
tree | 03564f3a7a28dbfc3ce685ea5b0f9de3393bf43e /x11-themes/ubuntu-wallpapers/ubuntu-wallpapers-15.04.1.ebuild | |
parent | Don't install package definition file. (diff) | |
download | gentoo-2-060a05c6368741b77202b9ed1f36e7fd50ce248d.tar.gz gentoo-2-060a05c6368741b77202b9ed1f36e7fd50ce248d.tar.bz2 gentoo-2-060a05c6368741b77202b9ed1f36e7fd50ce248d.zip |
Version bump (#547936 by Sebastian Pipping), , drop old, stabilize directly as this is only providing wallpapers (and looks to still work and look ok).
(Portage version: 2.2.18/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'x11-themes/ubuntu-wallpapers/ubuntu-wallpapers-15.04.1.ebuild')
-rw-r--r-- | x11-themes/ubuntu-wallpapers/ubuntu-wallpapers-15.04.1.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/x11-themes/ubuntu-wallpapers/ubuntu-wallpapers-15.04.1.ebuild b/x11-themes/ubuntu-wallpapers/ubuntu-wallpapers-15.04.1.ebuild new file mode 100644 index 000000000000..6457cdd780ce --- /dev/null +++ b/x11-themes/ubuntu-wallpapers/ubuntu-wallpapers-15.04.1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-themes/ubuntu-wallpapers/ubuntu-wallpapers-15.04.1.ebuild,v 1.1 2015/04/28 21:18:57 pacho Exp $ + +EAPI=5 + +DESCRIPTION="Ubuntu wallpapers" +HOMEPAGE="https://launchpad.net/ubuntu/+source/ubuntu-wallpapers" +MY_P="${PN}_${PV}" +SRC_URI="mirror://ubuntu/pool/main/u/${PN}/${MY_P}.orig.tar.gz" +LICENSE="CC-BY-SA-3.0" +KEYWORDS="amd64 arm x86" +IUSE="" + +RDEPEND="" +DEPEND="" + +S="${WORKDIR}/${MY_P/_/-}" + +SLOT=0 + +src_compile() { :; } +src_test() { :; } + +src_install() { + insinto /usr/share/backgrounds + doins *.jpg *.png + + insinto /usr/share/backgrounds/contest + doins contest/*.xml + + for i in *.xml.in; do + insinto /usr/share/gnome-background-properties + newins ${i} ${i/.in/} + done + + dodoc AUTHORS +} |