summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2012-11-19 09:27:33 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2012-11-19 09:27:33 +0000
commit95cb4d136604b79d3aacf4161da4088571dfa62c (patch)
tree0f0d86e83f839d707aec1a00318f779175555447 /media-video/vcdimager
parentUpdate the virtual to support both enlightenment_modules_notification and e_m... (diff)
downloadgentoo-2-95cb4d136604b79d3aacf4161da4088571dfa62c.tar.gz
gentoo-2-95cb4d136604b79d3aacf4161da4088571dfa62c.tar.bz2
gentoo-2-95cb4d136604b79d3aacf4161da4088571dfa62c.zip
Remove USE="minimal" and always build cli-frontends since it doesn't save any dependencies wrt #443644
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Diffstat (limited to 'media-video/vcdimager')
-rw-r--r--media-video/vcdimager/ChangeLog7
-rw-r--r--media-video/vcdimager/metadata.xml8
-rw-r--r--media-video/vcdimager/vcdimager-0.7.23-r1.ebuild17
3 files changed, 16 insertions, 16 deletions
diff --git a/media-video/vcdimager/ChangeLog b/media-video/vcdimager/ChangeLog
index d8463b8a2277..d1a1117b5aec 100644
--- a/media-video/vcdimager/ChangeLog
+++ b/media-video/vcdimager/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for media-video/vcdimager
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/vcdimager/ChangeLog,v 1.58 2012/11/17 13:00:50 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/vcdimager/ChangeLog,v 1.59 2012/11/19 09:27:33 ssuominen Exp $
+
+ 19 Nov 2012; Samuli Suominen <ssuominen@gentoo.org>
+ vcdimager-0.7.23-r1.ebuild:
+ Remove USE="minimal" and always build cli-frontends since it doesn't save any
+ dependencies wrt #443644
17 Nov 2012; Agostino Sarubbo <ago@gentoo.org> vcdimager-0.7.23-r1.ebuild:
Stable for amd64, wrt bug #443582
diff --git a/media-video/vcdimager/metadata.xml b/media-video/vcdimager/metadata.xml
index edccfe5754d2..0d9b0dcb7f33 100644
--- a/media-video/vcdimager/metadata.xml
+++ b/media-video/vcdimager/metadata.xml
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<herd>video</herd>
-<maintainer>
-<email>media-video@gentoo.org</email>
-</maintainer>
+ <herd>video</herd>
+ <maintainer>
+ <email>media-video@gentoo.org</email>
+ </maintainer>
</pkgmetadata>
diff --git a/media-video/vcdimager/vcdimager-0.7.23-r1.ebuild b/media-video/vcdimager/vcdimager-0.7.23-r1.ebuild
index 9e25913e1573..58734a101fd3 100644
--- a/media-video/vcdimager/vcdimager-0.7.23-r1.ebuild
+++ b/media-video/vcdimager/vcdimager-0.7.23-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2012 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.5 2012/11/17 13:00:50 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/vcdimager/vcdimager-0.7.23-r1.ebuild,v 1.6 2012/11/19 09:27:33 ssuominen Exp $
EAPI=5
inherit eutils
@@ -12,11 +12,11 @@ SRC_URI="http://www.vcdimager.org/pub/${PN}/${PN}-${PV%.*}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
-IUSE="xml minimal static-libs"
+IUSE="+xml static-libs"
RDEPEND=">=dev-libs/libcdio-0.71[-minimal]
- !minimal? ( dev-libs/popt )
- xml? ( >=dev-libs/libxml2-2.5.11 )"
+ dev-libs/popt
+ xml? ( dev-libs/libxml2 )"
DEPEND="${RDEPEND}
virtual/pkgconfig"
@@ -25,17 +25,12 @@ RESTRICT="test" #226249
DOCS="AUTHORS BUGS ChangeLog FAQ HACKING NEWS README THANKS TODO"
src_configure() {
- local myconf
-
# We disable the xmltest because the configure script includes differently
# than the actual XML-frontend C files.
+ local myconf
use xml && myconf="--with-xml-prefix=/usr --disable-xmltest"
use xml || myconf="--without-xml-frontend"
-
- econf \
- $(use_enable static-libs static) \
- $(use_with !minimal cli-frontends) \
- ${myconf}
+ econf $(use_enable static-libs static) ${myconf}
}
src_install() {