diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-01-08 11:02:26 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-01-08 11:02:26 +0000 |
commit | 88c32cc9261bb578ace605cf41f354f74f45ba13 (patch) | |
tree | e10558b33434185df28f8189fbc603df5de34ece /media-video/vcdimager | |
parent | Version bump, bug #253260, thank Daniel J. for report. (diff) | |
download | gentoo-2-88c32cc9261bb578ace605cf41f354f74f45ba13.tar.gz gentoo-2-88c32cc9261bb578ace605cf41f354f74f45ba13.tar.bz2 gentoo-2-88c32cc9261bb578ace605cf41f354f74f45ba13.zip |
If libcdio is built with USE minimal, it doesn't install cdtext.h include required for building vcdimager wrt #252387, thanks to Christopher Schwan.
(Portage version: 2.1.6.4/cvs/Linux 2.6.28-gentoo i686)
Diffstat (limited to 'media-video/vcdimager')
-rw-r--r-- | media-video/vcdimager/ChangeLog | 11 | ||||
-rw-r--r-- | media-video/vcdimager/vcdimager-0.7.23-r1.ebuild | 41 |
2 files changed, 50 insertions, 2 deletions
diff --git a/media-video/vcdimager/ChangeLog b/media-video/vcdimager/ChangeLog index 918a2b677c66..d3913a91cda4 100644 --- a/media-video/vcdimager/ChangeLog +++ b/media-video/vcdimager/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for media-video/vcdimager -# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/vcdimager/ChangeLog,v 1.53 2006/10/20 21:52:43 kloeri Exp $ +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/vcdimager/ChangeLog,v 1.54 2009/01/08 11:02:26 ssuominen Exp $ + +*vcdimager-0.7.23-r1 (08 Jan 2009) + + 08 Jan 2009; Samuli Suominen <ssuominen@gentoo.org> + +vcdimager-0.7.23-r1.ebuild: + If libcdio is built with USE minimal, it doesn't install cdtext.h include + required for building vcdimager wrt #252387, thanks to Christopher Schwan. 20 Oct 2006; Bryan Østergaard <kloeri@gentoo.org> vcdimager-0.7.23.ebuild: diff --git a/media-video/vcdimager/vcdimager-0.7.23-r1.ebuild b/media-video/vcdimager/vcdimager-0.7.23-r1.ebuild new file mode 100644 index 000000000000..517a1261da87 --- /dev/null +++ b/media-video/vcdimager/vcdimager-0.7.23-r1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/vcdimager/vcdimager-0.7.23-r1.ebuild,v 1.1 2009/01/08 11:02:26 ssuominen Exp $ + +EAPI=2 + +DESCRIPTION="GNU VCDimager" +HOMEPAGE="http://www.vcdimager.org/" +SRC_URI="http://www.vcdimager.org/pub/vcdimager/vcdimager-0.7/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="xml minimal" + +RDEPEND=">=dev-libs/libcdio-0.71[-minimal] + !minimal? ( dev-libs/popt ) + xml? ( >=dev-libs/libxml2-2.5.11 )" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +RESTRICT="test" + +src_configure() { + local myconf + + # We disable the xmltest because the configure script includes differently + # than the actual XML-frontend C files. + use xml && myconf="--with-xml-prefix=/usr --disable-xmltest" + use xml || myconf="--without-xml-frontend" + + econf \ + --disable-dependency-tracking \ + $(use_with !minimal cli-frontends) \ + ${myconf} +} + +src_install() { + emake DESTDIR="${D}" install || die "make install failed" + dodoc AUTHORS BUGS ChangeLog FAQ HACKING NEWS README THANKS TODO +} |