diff options
author | 2013-11-06 04:37:51 +0000 | |
---|---|---|
committer | 2013-11-06 04:37:51 +0000 | |
commit | 63d2950c9d7918c41b116c87dac37974cc02d102 (patch) | |
tree | 55280acb725880bdfc5b1f34434fb9efd2200064 /media-libs/sdif | |
parent | Shorten description, make repoman happier (diff) | |
download | gentoo-2-63d2950c9d7918c41b116c87dac37974cc02d102.tar.gz gentoo-2-63d2950c9d7918c41b116c87dac37974cc02d102.tar.bz2 gentoo-2-63d2950c9d7918c41b116c87dac37974cc02d102.zip |
Shorten description, make repoman happier
(Portage version: 2.2.7/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'media-libs/sdif')
-rw-r--r-- | media-libs/sdif/ChangeLog | 8 | ||||
-rw-r--r-- | media-libs/sdif/sdif-3.8.6.ebuild | 20 |
2 files changed, 14 insertions, 14 deletions
diff --git a/media-libs/sdif/ChangeLog b/media-libs/sdif/ChangeLog index f6ee19d336ca..524eaa96440c 100644 --- a/media-libs/sdif/ChangeLog +++ b/media-libs/sdif/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-libs/sdif -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/sdif/ChangeLog,v 1.7 2012/09/07 22:36:12 radhermit Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/sdif/ChangeLog,v 1.8 2013/11/06 04:37:51 patrick Exp $ + + 06 Nov 2013; Patrick Lauer <patrick@gentoo.org> sdif-3.8.6.ebuild: + Shorten description, make repoman happier 07 Sep 2012; Tim Harder <radhermit@gentoo.org> metadata.xml: Remove redundant maintainer from metadata and fix indentation. @@ -25,4 +28,3 @@ 03 Sep 2004; Chris White <chriswhite@gentoo.org> +metadata.xml, +files/sdif-3.8.6-cflags.patch, +sdif-3.8.6.ebuild: Initial Import into the tree. - diff --git a/media-libs/sdif/sdif-3.8.6.ebuild b/media-libs/sdif/sdif-3.8.6.ebuild index 340b5f2aa5c6..7ded8af601bb 100644 --- a/media-libs/sdif/sdif-3.8.6.ebuild +++ b/media-libs/sdif/sdif-3.8.6.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/sdif/sdif-3.8.6.ebuild,v 1.5 2005/01/31 17:28:58 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/sdif/sdif-3.8.6.ebuild,v 1.6 2013/11/06 04:37:51 patrick Exp $ IUSE="doc threads ftruncate debug" @@ -10,7 +10,7 @@ MY_PN="${PN/sdif/SDIF}" MY_P=${MY_PN}-${PV}-src S=${WORKDIR}/${MY_P} -DESCRIPTION="The Sound Description Interchange Format Library is a library that deals with audio and wave processing." +DESCRIPTION="The Sound Description Interchange Format Library deals with audio and wave processing." HOMEPAGE="http://www.ircam.fr/anasyn/sdif" SRC_URI="http://www.ircam.fr/anasyn/sdif/download/${MY_P}.tar.gz doc? ( http://www.ircam.fr/anasyn/sdif/download/${MY_PN}-doc.tar.gz )" @@ -25,18 +25,16 @@ src_unpack() { # a hack that I need to bother upstream about # they don't want to use the "Package-Name-Docs/file1.html" format # instead it's just file1.html :| - unpack ${MY_P}.tar.gz - mkdir ${WORKDIR}/SDIF-doc - use doc && tar xfz ${DISTDIR}/${MY_PN}-doc.tar.gz -C ${WORKDIR}/SDIF-doc + unpack "${MY_P}.tar.gz" + mkdir "${WORKDIR}/SDIF-doc" + use doc && tar xfz "${DISTDIR}/${MY_PN}-doc.tar.gz" -C "${WORKDIR}/SDIF-doc" - cd ${S} + cd "${S}" #custom cflags... - epatch ${FILESDIR}/${P}-cflags.patch + epatch "${FILESDIR}/${P}-cflags.patch" } src_compile() { - cd ${S} - econf $(use_enable debug) \ $(use_enable ftruncate) \ $(use_enable threads pthreads) \ @@ -47,5 +45,5 @@ src_compile() { src_install() { make DESTDIR="${D}" install || die - use doc && dohtml -r ${WORKDIR}/SDIF-doc + use doc && dohtml -r "${WORKDIR}/SDIF-doc" } |