diff options
author | Harri Nieminen <moikkis@gmail.com> | 2017-03-06 08:50:15 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-03-07 10:10:38 +0100 |
commit | ba5eb06a3f7e125c0bd10a217d1abe833dc81b75 (patch) | |
tree | da249a914c0f03349843e80063bbbeb61222d01d /x11-misc/ccsm | |
parent | x11-misc/cbatticon: Remove old (diff) | |
download | gentoo-ba5eb06a3f7e125c0bd10a217d1abe833dc81b75.tar.gz gentoo-ba5eb06a3f7e125c0bd10a217d1abe833dc81b75.tar.bz2 gentoo-ba5eb06a3f7e125c0bd10a217d1abe833dc81b75.zip |
x11-misc/ccsm: Remove old
Package-Manager: Portage-2.3.4, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4142
Diffstat (limited to 'x11-misc/ccsm')
-rw-r--r-- | x11-misc/ccsm/ccsm-0.8.4-r4.ebuild | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/x11-misc/ccsm/ccsm-0.8.4-r4.ebuild b/x11-misc/ccsm/ccsm-0.8.4-r4.ebuild deleted file mode 100644 index c7855de82bce..000000000000 --- a/x11-misc/ccsm/ccsm-0.8.4-r4.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -PYTHON_COMPAT=( python2_7 ) -DISTUTILS_IN_SOURCE_BUILD=1 -inherit distutils-r1 - -DESCRIPTION="Compizconfig Settings Manager" -HOMEPAGE="http://www.compiz.org/" -SRC_URI="http://releases.compiz.org/${PV}/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" - -RDEPEND=" - >=dev-python/compizconfig-python-${PV}[${PYTHON_USEDEP}] - >=dev-python/pygtk-2.12:2[${PYTHON_USEDEP}] - gnome-base/librsvg -" - -DOCS=( AUTHORS ) - -python_prepare_all() { - # return error if wrong arguments passed to setup.py - sed -i -e 's/raise SystemExit/\0(1)/' setup.py || die 'sed on setup.py failed' - # fix desktop file - sed -i \ - -e '/Categories/s/Compiz/X-\0/' \ - -e '/Encoding/d' \ - ccsm.desktop.in || die 'sed on ccsm.desktop.in failed' - - # correct gettext behavior - if [[ -n "${LINGUAS+x}" ]] ; then - for i in $(cd po ; echo *po | sed 's/\.po//g') ; do - if ! has ${i} ${LINGUAS} ; then - rm po/${i}.po || die - fi - done - fi - - distutils-r1_python_prepare_all -} - -python_configure_all() { - #set prefix - mydistutilsargs=( build --prefix=/usr ) -} |