diff options
author | Christoph Mende <angelos@gentoo.org> | 2008-12-15 19:05:07 +0000 |
---|---|---|
committer | Christoph Mende <angelos@gentoo.org> | 2008-12-15 19:05:07 +0000 |
commit | cdc47e49cc748172ddea62f153c9cf2876ce9f49 (patch) | |
tree | bddf5987b5324c8ec4d46ddf8977e15701757039 /media-libs/SoQt | |
parent | Marking openal-1.5.304 ~ppc64 for bug 245771 (diff) | |
download | gentoo-2-cdc47e49cc748172ddea62f153c9cf2876ce9f49.tar.gz gentoo-2-cdc47e49cc748172ddea62f153c9cf2876ce9f49.tar.bz2 gentoo-2-cdc47e49cc748172ddea62f153c9cf2876ce9f49.zip |
QA: Shortened description
Removed unneeded inherit eutils
Use emake instead of make
Added die to emake
Quoted $D
Removed $ROOT from src_compile
Removed LICENSE.GPL and COPYING from dodoc
(Portage version: 2.2_rc17/cvs/Linux 2.6.28-rc8 x86_64)
Diffstat (limited to 'media-libs/SoQt')
-rw-r--r-- | media-libs/SoQt/ChangeLog | 10 | ||||
-rw-r--r-- | media-libs/SoQt/SoQt-1.0.2.ebuild | 10 | ||||
-rw-r--r-- | media-libs/SoQt/SoQt-1.3.0.ebuild | 17 | ||||
-rw-r--r-- | media-libs/SoQt/SoQt-1.4.1.ebuild | 17 |
4 files changed, 27 insertions, 27 deletions
diff --git a/media-libs/SoQt/ChangeLog b/media-libs/SoQt/ChangeLog index e4ebb0c966c0..9b46bb31757d 100644 --- a/media-libs/SoQt/ChangeLog +++ b/media-libs/SoQt/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-libs/SoQt -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/SoQt/ChangeLog,v 1.18 2007/10/21 13:19:51 carlo Exp $ +# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/SoQt/ChangeLog,v 1.19 2008/12/15 19:05:06 angelos Exp $ + + 15 Dec 2008; Christoph Mende <angelos@gentoo.org> SoQt-1.0.2.ebuild, + SoQt-1.3.0.ebuild, SoQt-1.4.1.ebuild: + QA: Shortened description, removed unneeded inherit eutils, use emake + instead of make, added die to emake, quoted $D, removed $ROOT from + src_compile, removed LICENSE.GPL and COPYING from dodoc *SoQt-1.4.1 (21 Oct 2007) diff --git a/media-libs/SoQt/SoQt-1.0.2.ebuild b/media-libs/SoQt/SoQt-1.0.2.ebuild index 8899fe30844c..25186f2dbd22 100644 --- a/media-libs/SoQt/SoQt-1.0.2.ebuild +++ b/media-libs/SoQt/SoQt-1.0.2.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/SoQt/SoQt-1.0.2.ebuild,v 1.11 2006/02/17 13:43:05 gustavoz Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/SoQt/SoQt-1.0.2.ebuild,v 1.12 2008/12/15 19:05:06 angelos Exp $ -DESCRIPTION="A Qt Interface for coin" +DESCRIPTION="the glue between Coin3D and Qt3" SRC_URI="ftp://ftp.coin3d.org/pub/coin/src/${P}.tar.gz" HOMEPAGE="http://www.coin3d.org/" @@ -15,8 +15,8 @@ DEPEND="=x11-libs/qt-3* >=media-libs/coin-${PV}" src_install() { - make DESTDIR=${D} install || die - dodoc AUTHORS COPYING ChangeLog* LICENSE* NEWS README* + emake DESTDIR="${D}" install || die "emake install failed" + dodoc AUTHORS ChangeLog* NEWS README* docinto txt dodoc docs/qtcomponents.doxygen } diff --git a/media-libs/SoQt/SoQt-1.3.0.ebuild b/media-libs/SoQt/SoQt-1.3.0.ebuild index c59c37954501..a32429c70a4f 100644 --- a/media-libs/SoQt/SoQt-1.3.0.ebuild +++ b/media-libs/SoQt/SoQt-1.3.0.ebuild @@ -1,11 +1,8 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/SoQt/SoQt-1.3.0.ebuild,v 1.3 2006/12/02 21:56:46 beandog Exp $ - -inherit eutils - -DESCRIPTION="SoQt provides the glue between Systems in Motion's Coin high-level 3D visualization library and Trolltech's Qt 2D user interface library." +# $Header: /var/cvsroot/gentoo-x86/media-libs/SoQt/SoQt-1.3.0.ebuild,v 1.4 2008/12/15 19:05:07 angelos Exp $ +DESCRIPTION="the glue between Coin3D and Qt3" SRC_URI="ftp://ftp.coin3d.org/pub/coin/src/all/${P}.tar.gz" HOMEPAGE="http://www.coin3d.org/" @@ -20,11 +17,11 @@ DEPEND="${RDEPEND} doc? ( app-doc/doxygen )" src_compile() { - econf --with-coin --disable-html-help $(use_enable doc html) htmldir=${ROOT}usr/share/doc/${PF}/html - emake + econf --with-coin --disable-html-help $(use_enable doc html) htmldir=/usr/share/doc/${PF}/html + emake || die "emake failed" } src_install() { - make DESTDIR=${D} install || die - dodoc AUTHORS NEWS README* + emake DESTDIR="${D}" install || die "emake install failed" + dodoc AUTHORS ChangeLog NEWS README* } diff --git a/media-libs/SoQt/SoQt-1.4.1.ebuild b/media-libs/SoQt/SoQt-1.4.1.ebuild index 5de126faa6a3..0f9feaae184d 100644 --- a/media-libs/SoQt/SoQt-1.4.1.ebuild +++ b/media-libs/SoQt/SoQt-1.4.1.ebuild @@ -1,11 +1,8 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/SoQt/SoQt-1.4.1.ebuild,v 1.1 2007/10/21 13:19:51 carlo Exp $ - -inherit eutils - -DESCRIPTION="SoQt provides the glue between Systems in Motion's Coin high-level 3D visualization library and Trolltech's Qt 2D user interface library." +# $Header: /var/cvsroot/gentoo-x86/media-libs/SoQt/SoQt-1.4.1.ebuild,v 1.2 2008/12/15 19:05:07 angelos Exp $ +DESCRIPTION="the glue between Coin3D and Qt3" SRC_URI="ftp://ftp.coin3d.org/pub/coin/src/all/${P}.tar.gz" HOMEPAGE="http://www.coin3d.org/" @@ -20,11 +17,11 @@ DEPEND="${RDEPEND} doc? ( app-doc/doxygen )" src_compile() { - econf --with-coin --disable-html-help $(use_enable doc html) htmldir=${ROOT}usr/share/doc/${PF}/html - emake + econf --with-coin --disable-html-help $(use_enable doc html) htmldir=/usr/share/doc/${PF}/html + emake || die "emake failed" } src_install() { - make DESTDIR=${D} install || die - dodoc AUTHORS NEWS README* + emake DESTDIR="${D}" install || die "emake install failed" + dodoc AUTHORS ChangeLog NEWS README* } |