diff options
author | Pacho Ramos <pacho@gentoo.org> | 2016-08-17 14:52:36 +0200 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2016-08-17 15:49:55 +0200 |
commit | f8a834082205e93e2875a9e7c4250e6298151205 (patch) | |
tree | b0910eeeff2fec698b177f0d4ace064bf49614b3 /app-cdr | |
parent | app-cdr/gtkcdlabel: Drop old (diff) | |
download | gentoo-f8a834082205e93e2875a9e7c4250e6298151205.tar.gz gentoo-f8a834082205e93e2875a9e7c4250e6298151205.tar.bz2 gentoo-f8a834082205e93e2875a9e7c4250e6298151205.zip |
app-cdr/recorder: Drop old
Package-Manager: portage-2.3.0
Diffstat (limited to 'app-cdr')
-rw-r--r-- | app-cdr/recorder/recorder-1.4.5.ebuild | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/app-cdr/recorder/recorder-1.4.5.ebuild b/app-cdr/recorder/recorder-1.4.5.ebuild deleted file mode 100644 index 3c1b2bddcad1..000000000000 --- a/app-cdr/recorder/recorder-1.4.5.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=4 - -PYTHON_DEPEND="2:2.7" - -inherit fdo-mime python - -DESCRIPTION="A simple GTK+ disc burner" -HOMEPAGE="https://code.google.com/p/recorder/" -SRC_URI="https://recorder.googlecode.com/files/${P}.tar.bz2" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="dvdr mp3 nls ogg vcd" - -LANGS="ar cs es fr it nl pl pt_BR ru sv" -for l in ${LANGS}; do - IUSE="${IUSE} linguas_${l}" -done - -DEPEND="nls? ( sys-devel/gettext )" -RDEPEND="${DEPEND} - >=dev-python/pygtk-2 - sys-apps/coreutils - virtual/cdrtools - dvdr? ( app-cdr/dvd+rw-tools ) - mp3? ( media-sound/mpg123 ) - ogg? ( media-sound/vorbis-tools ) - vcd? ( - app-cdr/cdrdao - media-video/vcdimager - )" - -DOCS="CHANGELOG TRANSLATORS" - -pkg_setup() { - python_set_active_version 2 - python_pkg_setup -} - -src_prepare() { - python_convert_shebangs 2 recorder - - local MY_NLS="" - if use nls; then - for ling in ${LINGUAS}; do - if has $ling ${LANGS}; then - MY_NLS="${MY_NLS} ${ling}" - fi - done - fi - - sed -i -e "s:ar cs es fr pt_BR ru it nl:${MY_NLS}:" Makefile || die -} - -pkg_postinst() { - fdo-mime_desktop_database_update -} - -pkg_postrm() { - fdo-mime_desktop_database_update -} |