* [gentoo-commits] gentoo-x86 commit in media-video/qdvdauthor: ChangeLog qdvdauthor-1.0.0.ebuild
@ 2008-03-16 22:31 Stefan Briesenick (sbriesen)
0 siblings, 0 replies; 2+ messages in thread
From: Stefan Briesenick (sbriesen) @ 2008-03-16 22:31 UTC (permalink / raw
To: gentoo-commits
sbriesen 08/03/16 22:31:45
Modified: ChangeLog
Added: qdvdauthor-1.0.0.ebuild
Log:
version bump, solving bug #208975
(Portage version: 2.1.4.4)
Revision Changes Path
1.19 media-video/qdvdauthor/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/qdvdauthor/ChangeLog?rev=1.19&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/qdvdauthor/ChangeLog?rev=1.19&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/qdvdauthor/ChangeLog?r1=1.18&r2=1.19
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/qdvdauthor/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog 6 Jan 2008 03:16:34 -0000 1.18
+++ ChangeLog 16 Mar 2008 22:31:44 -0000 1.19
@@ -1,6 +1,12 @@
# ChangeLog for media-video/qdvdauthor
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/qdvdauthor/ChangeLog,v 1.18 2008/01/06 03:16:34 sbriesen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/qdvdauthor/ChangeLog,v 1.19 2008/03/16 22:31:44 sbriesen Exp $
+
+*qdvdauthor-1.0.0 (16 Mar 2008)
+
+ 16 Mar 2008; Stefan Briesenick <sbriesen@gentoo.org>
+ +qdvdauthor-1.0.0.ebuild:
+ version bump, solving bug #208975
*qdvdauthor-1.0.0_rc3 (06 Jan 2008)
1.1 media-video/qdvdauthor/qdvdauthor-1.0.0.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/qdvdauthor/qdvdauthor-1.0.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/qdvdauthor/qdvdauthor-1.0.0.ebuild?rev=1.1&content-type=text/plain
Index: qdvdauthor-1.0.0.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/qdvdauthor/qdvdauthor-1.0.0.ebuild,v 1.1 2008/03/16 22:31:44 sbriesen Exp $
inherit eutils flag-o-matic qt3
DESCRIPTION="'Q' DVD-Author is a GUI frontend for dvdauthor written in Qt"
HOMEPAGE="http://qdvdauthor.sourceforge.net/"
SRC_URI="mirror://sourceforge/qdvdauthor/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="xine mplayer"
DEPEND=">=media-video/dvdauthor-0.6.11
>=media-gfx/imagemagick-6.1.8.8
>=media-video/mjpegtools-1.6.2
>=media-video/dvd-slideshow-0.7.2
xine? ( >=media-libs/xine-lib-1.1.0 )
mplayer? ( media-video/mplayer )
!xine? ( !mplayer? ( >=media-libs/xine-lib-1.1.0 ) )
$(qt_min_version 3.2)"
RDEPEND="${DEPEND}
media-libs/netpbm
media-video/videotrans
media-sound/toolame
media-sound/lame
media-sound/sox"
# TODO:
# media-video/dvd-slideshow -> optional
# installing further tools -> needs evaluation
src_unpack() {
unpack ${A}
cd "${S}"
# do not over-optimize (see bug #147250)
replace-flags -O? -O2
filter-flags -finline-functions
# set our C(XX)FLAGS
for PRO in */*.pro */*/*.pro; do
echo "QMAKE_CFLAGS_RELEASE = ${CFLAGS}" >> "${PRO}"
echo "QMAKE_CXXFLAGS_RELEASE = ${CXXFLAGS}" >> "${PRO}"
done
# full-qualify qmake in configure and append -nocache (see bug #118697)
sed -i -e "s:make;\?[[:space:]]*\$:make ${MAKEOPTS};:g" \
-e "s:\(/qmake\):\1 -nocache QMAKE=\$QTDIR/bin/qmake:g" configure
# fixing defaults from /usr/local/bin to gentoo default /usr/bin
sed -i -e "s:/usr/local/bin:/usr/bin:g" doc/sound.txt \
qdvdauthor/dialog*.cpp qdvdauthor/qslideshow/dialog*.cpp
}
src_compile() {
local myconf="--prefix=/usr --build-qplayer --build-qslideshow"
# select backend (VLC is currently broken)
#use vlc && myconf="${myconf} --with-vlc-support"
use xine && myconf="${myconf} --with-xine-support"
use mplayer && myconf="${myconf} --with-mplayer-support"
# if no backend selected, use XINE as default
if ! use xine && ! use mplayer; then
myconf="${myconf} --with-xine-support"
fi
./configure --qt-dir="${QTDIR}" ${myconf} || die "configure failed"
}
src_install() {
make -C qdvdauthor INSTALL_ROOT="${D}" install || die "qdvdauthor install failed"
make -C qdvdauthor/qslideshow INSTALL_ROOT="${D}" install || die "qslideshow install failed"
make -C qdvdauthor/qplayer INSTALL_ROOT="${D}" install || die "qplayer install failed"
dobin bin/{qdvdauthor,qslideshow,qplayer}
dodoc CHANGELOG README TODO doc/{ISO*,look*,sound*,todo*,render*}.txt
domenu qdvdauthor.desktop
doicon qdvdauthor.png
}
--
gentoo-commits@lists.gentoo.org mailing list
^ permalink raw reply [flat|nested] 2+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/qdvdauthor: ChangeLog qdvdauthor-1.0.0.ebuild
@ 2008-12-17 21:23 Peter Alfredsen (loki_val)
0 siblings, 0 replies; 2+ messages in thread
From: Peter Alfredsen (loki_val) @ 2008-12-17 21:23 UTC (permalink / raw
To: gentoo-commits
loki_val 08/12/17 21:23:36
Modified: ChangeLog
Removed: qdvdauthor-1.0.0.ebuild
Log:
Dropping ebuild that doesn't compile w/gcc-4.3 w.r.t bug 218349.
(Portage version: 2.2_rc17/cvs/Linux 2.6.28-rc6 x86_64)
Revision Changes Path
1.25 media-video/qdvdauthor/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/qdvdauthor/ChangeLog?rev=1.25&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/qdvdauthor/ChangeLog?rev=1.25&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/qdvdauthor/ChangeLog?r1=1.24&r2=1.25
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/qdvdauthor/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog 27 Jul 2008 21:54:04 -0000 1.24
+++ ChangeLog 17 Dec 2008 21:23:36 -0000 1.25
@@ -1,6 +1,10 @@
# ChangeLog for media-video/qdvdauthor
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/qdvdauthor/ChangeLog,v 1.24 2008/07/27 21:54:04 carlo Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/qdvdauthor/ChangeLog,v 1.25 2008/12/17 21:23:36 loki_val Exp $
+
+ 17 Dec 2008; Peter Alfredsen <loki_val@gentoo.org>
+ -qdvdauthor-1.0.0.ebuild:
+ Dropping ebuild that doesn't compile w/gcc-4.3 w.r.t bug 218349.
27 Jul 2008; Carsten Lohrke <carlo@gentoo.org> qdvdauthor-1.0.0.ebuild,
qdvdauthor-1.2.0.ebuild:
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-12-17 21:23 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-03-16 22:31 [gentoo-commits] gentoo-x86 commit in media-video/qdvdauthor: ChangeLog qdvdauthor-1.0.0.ebuild Stefan Briesenick (sbriesen)
-- strict thread matches above, loose matches on Subject: below --
2008-12-17 21:23 Peter Alfredsen (loki_val)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox