diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2011-04-25 17:09:57 +0000 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2011-04-25 17:09:57 +0000 |
commit | a19018389bec35a82d9236679639f8a4da336fa0 (patch) | |
tree | f9ad20ce23e8f1601e15dc2ae758bcd304b1b4e5 /media-video/bombono-dvd | |
parent | Stable on amd64 wrt bug #363921 (diff) | |
download | gentoo-2-a19018389bec35a82d9236679639f8a4da336fa0.tar.gz gentoo-2-a19018389bec35a82d9236679639f8a4da336fa0.tar.bz2 gentoo-2-a19018389bec35a82d9236679639f8a4da336fa0.zip |
Version bump
(Portage version: 2.1.9.46/cvs/Linux x86_64)
Diffstat (limited to 'media-video/bombono-dvd')
-rw-r--r-- | media-video/bombono-dvd/ChangeLog | 8 | ||||
-rw-r--r-- | media-video/bombono-dvd/bombono-dvd-1.0.2.ebuild | 52 |
2 files changed, 59 insertions, 1 deletions
diff --git a/media-video/bombono-dvd/ChangeLog b/media-video/bombono-dvd/ChangeLog index 1ac0718fc09b..27edeb00dd60 100644 --- a/media-video/bombono-dvd/ChangeLog +++ b/media-video/bombono-dvd/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-video/bombono-dvd # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/bombono-dvd/ChangeLog,v 1.14 2011/04/24 15:03:27 dilfridge Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/bombono-dvd/ChangeLog,v 1.15 2011/04/25 17:09:57 dilfridge Exp $ + +*bombono-dvd-1.0.2 (25 Apr 2011) + + 25 Apr 2011; Andreas K. Huettel <dilfridge@gentoo.org> + +bombono-dvd-1.0.2.ebuild: + Version bump 24 Apr 2011; Andreas K. Huettel <dilfridge@gentoo.org> bombono-dvd-1.0.1.ebuild, +files/bombono-dvd-1.0.1-cflags.patch: diff --git a/media-video/bombono-dvd/bombono-dvd-1.0.2.ebuild b/media-video/bombono-dvd/bombono-dvd-1.0.2.ebuild new file mode 100644 index 000000000000..ba87619e96f7 --- /dev/null +++ b/media-video/bombono-dvd/bombono-dvd-1.0.2.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/bombono-dvd/bombono-dvd-1.0.2.ebuild,v 1.1 2011/04/25 17:09:57 dilfridge Exp $ + +EAPI=4 + +inherit base scons-utils toolchain-funcs flag-o-matic + +DESCRIPTION="GUI DVD authoring program" +HOMEPAGE="http://www.bombono.org/" +SRC_URI="mirror://sourceforge/bombono/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" + +KEYWORDS="~amd64 ~x86" + +IUSE="" + +RDEPEND=" + app-i18n/enca + app-cdr/dvd+rw-tools + dev-cpp/gtkmm:2.4 + dev-cpp/libxmlpp:2.6 + dev-libs/boost + media-libs/libdvdread + media-sound/twolame + media-video/dvdauthor + virtual/ffmpeg + >=media-video/mjpegtools-1.8.0 + x11-libs/gtk+:2 +" + +DEPEND=">=dev-util/scons-0.96.1 + ${RDEPEND}" + +PATCHES=( "${FILESDIR}/${PN}-1.0.1-cflags.patch" ) + +src_compile() { + append-flags -DBOOST_FILESYSTEM_VERSION=2 + + tc-export CC CXX + + nonfatal escons CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" LDFLAGS="${LDFLAGS}" \ + DESTDIR="${D}" PREFIX="/usr" \ + CPPFLAGS='-UBOOST_SYSTEM_NO_DEPRECATED' USE_EXT_BOOST=1 \ + || die 'Please add "${S}/config.opts" when filing bugs reports!' +} + +src_install() { + nonfatal escons install || die 'Please add "${S}/config.opts" when filing bugs reports!' +} |