public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Ben de Groot (yngwin)" <yngwin@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/transkode: ChangeLog transkode-0.7.ebuild
Date: Sat, 14 Jun 2008 02:45:00 +0000	[thread overview]
Message-ID: <E1K7LlE-0001rP-7s@stork.gentoo.org> (raw)

yngwin      08/06/14 02:45:00

  Modified:             ChangeLog
  Added:                transkode-0.7.ebuild
  Log:
  Version bump, fixes 187996.
  (Portage version: 2.1.5.5)

Revision  Changes    Path
1.10                 media-sound/transkode/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/transkode/ChangeLog?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/transkode/ChangeLog?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/transkode/ChangeLog?r1=1.9&r2=1.10

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/transkode/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog	24 Apr 2008 11:22:48 -0000	1.9
+++ ChangeLog	14 Jun 2008 02:44:59 -0000	1.10
@@ -1,6 +1,14 @@
 # ChangeLog for media-sound/transkode
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/transkode/ChangeLog,v 1.9 2008/04/24 11:22:48 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/transkode/ChangeLog,v 1.10 2008/06/14 02:44:59 yngwin Exp $
+
+*transkode-0.7 (14 Jun 2008)
+
+  14 Jun 2008; Ben de Groot <yngwin@gentoo.org>
+  +files/transkode-0.7-gcc-4.3.patch, +transkode-0.7.ebuild:
+  Version bump, with changes to the ebuild submitted by Jure Kobal in bug
+  187996. Updated gcc-4.3 patch. Dropped ~x86-fbsd because xineadump needs
+  to be keyworded for that arch first.
 
   24 Apr 2008; Diego Pettenò <flameeyes@gentoo.org>
   +files/transkode-0.6+gcc-4.3.patch, transkode-0.6-r1.ebuild:



1.1                  media-sound/transkode/transkode-0.7.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/transkode/transkode-0.7.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/transkode/transkode-0.7.ebuild?rev=1.1&content-type=text/plain

Index: transkode-0.7.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/transkode/transkode-0.7.ebuild,v 1.1 2008/06/14 02:44:59 yngwin Exp $

ARTS_REQUIRED="never"

inherit kde

DESCRIPTION="KDE frontend for various audio transcoding tools"
HOMEPAGE="http://kde-apps.org/content/show.php?content=37669"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="amarok ffmpeg gstreamer mplayer wavpack xine"

RDEPEND="media-libs/taglib
	amarok? ( media-sound/amarok )
	ffmpeg? ( media-video/ffmpeg )
	gstreamer? (
		>=media-libs/gstreamer-0.10
		>=media-libs/gst-plugins-good-0.10
		>=media-plugins/gst-plugins-flac-0.10
		>=media-plugins/gst-plugins-lame-0.10
		>=media-plugins/gst-plugins-vorbis-0.10
		>=media-plugins/gst-plugins-ogg-0.10
		>=media-plugins/gst-plugins-faad-0.10
		)
	mplayer? ( media-video/mplayer )
	wavpack? ( media-sound/wavpack )
	xine? ( media-sound/xineadump )"
DEPEND="${RDEPEND}"

need-kde 3.5

PATCHES=( "${FILESDIR}/${P}-gcc-4.3.patch" )

S="${WORKDIR}/${PN}"

pkg_setup() {
	if ! use ffmpeg || ! use mplayer || ! use gstreamer; then
		echo
		ewarn "TransKode should be emerged with at least one of next"
		ewarn "use flags: mplayer, ffmpeg, gstreamer or xine!"
		ewarn "None of them is mandatory but they install programs that"
		ewarn "can be used for decoding of audio formats for which no "
		ewarn "other decoder is present."
		echo
		ebeep
		epause 5
	fi
}

src_compile() {
	local myconf="$(use_enable amarok amarokscript)"
	kde_src_compile
}

src_install() {
	kde_src_install

	dodir /usr/share/applications/kde
	mv "${D}/usr/share/applnk/${PN}.desktop" \
		"${D}/usr/share/applications/kde"
	echo "\nCategories=Qt;KDE;Application;AudioVideo;" \
		>> "${D}/usr/share/applications/kde/${PN}.desktop"
}

pkg_postinst() {
	if use amarok; then
		elog "If you want to use TransKode to encode audio files on the fly"
		elog "when transferring music to a portable media device, remember"
		elog "to start the TransKode script through the Script Manager"
		elog "on the Tools menu."
	fi
}



-- 
gentoo-commits@lists.gentoo.org mailing list



             reply	other threads:[~2008-06-14  2:45 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-06-14  2:45 Ben de Groot (yngwin) [this message]
  -- strict thread matches above, loose matches on Subject: below --
2008-06-14 18:20 [gentoo-commits] gentoo-x86 commit in media-sound/transkode: ChangeLog transkode-0.7.ebuild Ben de Groot (yngwin)
2008-08-24 18:00 Matti Bickel (mabi)
2009-03-15 17:04 Markus Meier (maekke)
2009-04-30 19:32 Brent Baude (ranger)
2009-09-28 19:06 Samuli Suominen (ssuominen)

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=E1K7LlE-0001rP-7s@stork.gentoo.org \
    --to=yngwin@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox