diff options
author | Kacper Kowalik <xarthisius@gentoo.org> | 2013-12-29 08:47:28 +0000 |
---|---|---|
committer | Kacper Kowalik <xarthisius@gentoo.org> | 2013-12-29 08:47:28 +0000 |
commit | 9d5979bf709d4cdca79fce1dd57f62b4b9b0d701 (patch) | |
tree | 03a33f8cc4eac63efb59ebaefff4fa60b8cf2786 /media-video/ffdiaporama | |
parent | Mask new multilib readline. (diff) | |
download | gentoo-2-9d5979bf709d4cdca79fce1dd57f62b4b9b0d701.tar.gz gentoo-2-9d5979bf709d4cdca79fce1dd57f62b4b9b0d701.tar.bz2 gentoo-2-9d5979bf709d4cdca79fce1dd57f62b4b9b0d701.zip |
Drop old ebuild as sources were removed upstream
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x5D21B852895192F9)
Diffstat (limited to 'media-video/ffdiaporama')
-rw-r--r-- | media-video/ffdiaporama/ChangeLog | 5 | ||||
-rw-r--r-- | media-video/ffdiaporama/ffdiaporama-2.0.ebuild | 77 |
2 files changed, 4 insertions, 78 deletions
diff --git a/media-video/ffdiaporama/ChangeLog b/media-video/ffdiaporama/ChangeLog index 3e16c00c113a..a5de643e1cb2 100644 --- a/media-video/ffdiaporama/ChangeLog +++ b/media-video/ffdiaporama/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-video/ffdiaporama # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/ffdiaporama/ChangeLog,v 1.18 2013/12/11 21:39:43 tomwij Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/ffdiaporama/ChangeLog,v 1.19 2013/12/29 08:47:28 xarthisius Exp $ + + 29 Dec 2013; Kacper Kowalik <xarthisius@gentoo.org> -ffdiaporama-2.0.ebuild: + Drop old ebuild as sources were removed upstream 11 Dec 2013; Tom Wijsman <TomWij@gentoo.org> ffdiaporama-2.0.1.ebuild: Leading spaces removed for repoman. diff --git a/media-video/ffdiaporama/ffdiaporama-2.0.ebuild b/media-video/ffdiaporama/ffdiaporama-2.0.ebuild deleted file mode 100644 index 124e38406414..000000000000 --- a/media-video/ffdiaporama/ffdiaporama-2.0.ebuild +++ /dev/null @@ -1,77 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/ffdiaporama/ffdiaporama-2.0.ebuild,v 1.2 2013/11/30 12:40:28 hasufell Exp $ - -EAPI=5 - -inherit eutils fdo-mime gnome2-utils qt4-r2 - -OPENCLI_PV=0.18 -OPENCLI_P=openclipart-${OPENCLI_PV} -TEXTUREMATE_P=ffDiaporama-texturemate_1.0 -DESCRIPTION="Movie creator from photos and video clips" -HOMEPAGE="http://ffdiaporama.tuxfamily.org" -SRC_URI="http://download.tuxfamily.org/${PN}/Archives/${PN}_${PV}.tar.gz - openclipart? ( http://openclipart.org/downloads/${OPENCLI_PV}/${OPENCLI_P}-svgonly.tar.bz2 ) - texturemate? ( http://download.tuxfamily.org/${PN}/Archives/${TEXTUREMATE_P}.tar.gz )" - -LICENSE="GPL-2 - openclipart? ( CC0-1.0 ) - texturemate? ( CC-BY-3.0 )" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="openclipart texturemate" - -RDEPEND=" - dev-qt/qtcore:4 - dev-qt/qtgui:4 - dev-qt/qthelp:4 - dev-qt/qtsql:4[sqlite] - dev-qt/qtsvg:4 - media-gfx/exiv2 - media-libs/libsdl[audio] - media-libs/taglib - !<media-video/ffmpeg-1.2:0 - virtual/ffmpeg[encode]" -DEPEND="${RDEPEND}" - -PATCHES=( "${FILESDIR}"/${P}-libav9-deinterlacing.patch ) -DOCS=( authors.txt ) - -src_unpack() { - # S=${WORKDIR} would result in unremoved files in - # ${WORKDIR}/../build - mkdir ${P} || die - cd ${P} || die - unpack ${A} -} - -src_install() { - qt4-r2_src_install - doicon -s 32 ffdiaporama.png - if use openclipart; then - dodir /usr/share/ffDiaporama/clipart/openclipart - cd "${S}"/${OPENCLI_P}-svgonly/clipart || die - find . -type d -maxdepth 1 -not -name . -exec cp -R '{}' "${D}"/usr/share/ffDiaporama/clipart/openclipart \; || die - fi - if use texturemate; then - cd "${S}"/ffDiaporama-texturemate || die - ./install.sh "${D}"/usr - fi -} - -pkg_preinst() { - gnome2_icon_savelist -} - -pkg_postinst() { - fdo-mime_desktop_database_update - fdo-mime_mime_database_update - gnome2_icon_cache_update -} - -pkg_postrm() { - fdo-mime_desktop_database_update - fdo-mime_mime_database_update - gnome2_icon_cache_update -} |