diff options
author | Pacho Ramos <pacho@gentoo.org> | 2014-05-02 07:54:27 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2014-05-02 07:54:27 +0000 |
commit | e737a5e36e8677b14dc3df574c45e96d042bef81 (patch) | |
tree | 338035e17447cf232315c5431907712a206e9900 /x11-themes | |
parent | Snapshot of trunk. (diff) | |
download | gentoo-2-e737a5e36e8677b14dc3df574c45e96d042bef81.tar.gz gentoo-2-e737a5e36e8677b14dc3df574c45e96d042bef81.tar.bz2 gentoo-2-e737a5e36e8677b14dc3df574c45e96d042bef81.zip |
Version bump
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'x11-themes')
-rw-r--r-- | x11-themes/ubuntu-wallpapers/ChangeLog | 8 | ||||
-rw-r--r-- | x11-themes/ubuntu-wallpapers/ubuntu-wallpapers-14.04.0.1.ebuild | 38 |
2 files changed, 45 insertions, 1 deletions
diff --git a/x11-themes/ubuntu-wallpapers/ChangeLog b/x11-themes/ubuntu-wallpapers/ChangeLog index 6a7560cc6f42..80fcc49e550c 100644 --- a/x11-themes/ubuntu-wallpapers/ChangeLog +++ b/x11-themes/ubuntu-wallpapers/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-themes/ubuntu-wallpapers # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/ubuntu-wallpapers/ChangeLog,v 1.13 2014/01/23 15:55:39 pinkbyte Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-themes/ubuntu-wallpapers/ChangeLog,v 1.14 2014/05/02 07:54:27 pacho Exp $ + +*ubuntu-wallpapers-14.04.0.1 (02 May 2014) + + 02 May 2014; Pacho Ramos <pacho@gentoo.org> + +ubuntu-wallpapers-14.04.0.1.ebuild: + Version bump 23 Jan 2014; Sergey Popov <pinkbyte@gentoo.org> ubuntu-wallpapers-13.10.ebuild: diff --git a/x11-themes/ubuntu-wallpapers/ubuntu-wallpapers-14.04.0.1.ebuild b/x11-themes/ubuntu-wallpapers/ubuntu-wallpapers-14.04.0.1.ebuild new file mode 100644 index 000000000000..e622fbc264a9 --- /dev/null +++ b/x11-themes/ubuntu-wallpapers/ubuntu-wallpapers-14.04.0.1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-themes/ubuntu-wallpapers/ubuntu-wallpapers-14.04.0.1.ebuild,v 1.1 2014/05/02 07:54:27 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 +} |