public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-sound/mpg321: mpg321-0.2.10-r3.ebuild
@ 2008-05-17  9:58 Samuli Suominen (drac)
  0 siblings, 0 replies; 2+ messages in thread
From: Samuli Suominen (drac) @ 2008-05-17  9:58 UTC (permalink / raw
  To: gentoo-commits

drac        08/05/17 09:58:38

  Modified:             mpg321-0.2.10-r3.ebuild
  Log:
  quoting
  (Portage version: 2.1.5)

Revision  Changes    Path
1.6                  media-sound/mpg321/mpg321-0.2.10-r3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mpg321/mpg321-0.2.10-r3.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mpg321/mpg321-0.2.10-r3.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mpg321/mpg321-0.2.10-r3.ebuild?r1=1.5&r2=1.6

Index: mpg321-0.2.10-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/mpg321/mpg321-0.2.10-r3.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- mpg321-0.2.10-r3.ebuild	17 May 2008 08:48:35 -0000	1.5
+++ mpg321-0.2.10-r3.ebuild	17 May 2008 09:58:38 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/mpg321/mpg321-0.2.10-r3.ebuild,v 1.5 2008/05/17 08:48:35 drac Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mpg321/mpg321-0.2.10-r3.ebuild,v 1.6 2008/05/17 09:58:38 drac Exp $
 
 inherit eutils
 
@@ -20,13 +20,13 @@
 
 src_unpack() {
 	unpack ${A}
-	cd ${S}
+	cd "${S}"
 
 	# fix file descriptors leak (from Debian?)
-	epatch ${FILESDIR}/${P}.diff
+	epatch "${FILESDIR}"/${P}.diff
 	# provide an User-Agent when requesting via HTTP
 	# By Frank Ruell, in FreeBSD PR 84898
-	epatch ${FILESDIR}/${P}-useragent.patch
+	epatch "${FILESDIR}"/${P}-useragent.patch
 }
 
 src_compile() {
@@ -36,22 +36,22 @@
 }
 
 src_install () {
-	make DESTDIR=${D} install || die
+	make DESTDIR="${D}" install || die
 	dodoc AUTHORS BUGS ChangeLog HACKING NEWS README README.remote THANKS TODO
 }
 
 pkg_postinst() {
 	# We create a symlink for /usr/bin/mpg123 if it doesn't already exist
-	if ! [ -f ${ROOT}/usr/bin/mpg123 ]; then
-		ln -s mpg321 ${ROOT}/usr/bin/mpg123
+	if ! [ -f "${ROOT}"usr/bin/mpg123 ]; then
+		ln -s mpg321 "${ROOT}"usr/bin/mpg123
 	fi
 }
 
 pkg_postrm() {
 	# We delete the symlink if it's nolonger valid.
-	if [ -L "${ROOT}/usr/bin/mpg123" ] && [ ! -x "${ROOT}/usr/bin/mpg123" ]; then
-		elog "We are removing the ${ROOT}/usr/bin/mpg123 symlink since it is no longer valid."
+	if [ -L "${ROOT}usr/bin/mpg123" ] && [ ! -x "${ROOT}usr/bin/mpg123" ]; then
+		elog "We are removing the ${ROOT}usr/bin/mpg123 symlink since it is no longer valid."
 		elog "If you are using another virtual/mpg123 program, you should setup the appropriate symlink."
-		rm ${ROOT}/usr/bin/mpg123
+		rm "${ROOT}"usr/bin/mpg123
 	fi
 }



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-sound/mpg321: mpg321-0.2.10-r3.ebuild
@ 2009-06-01 18:03 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 2+ messages in thread
From: Samuli Suominen (ssuominen) @ 2009-06-01 18:03 UTC (permalink / raw
  To: gentoo-commits

ssuominen    09/06/01 18:03:46

  Modified:             mpg321-0.2.10-r3.ebuild
  Log:
  Fix repoman warning
  (Portage version: 2.1.6.13/cvs/Linux x86_64)

Revision  Changes    Path
1.13                 media-sound/mpg321/mpg321-0.2.10-r3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mpg321/mpg321-0.2.10-r3.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mpg321/mpg321-0.2.10-r3.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mpg321/mpg321-0.2.10-r3.ebuild?r1=1.12&r2=1.13

Index: mpg321-0.2.10-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/mpg321/mpg321-0.2.10-r3.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- mpg321-0.2.10-r3.ebuild	15 Jul 2008 19:50:51 -0000	1.12
+++ mpg321-0.2.10-r3.ebuild	1 Jun 2009 18:03:46 -0000	1.13
@@ -1,6 +1,6 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/mpg321/mpg321-0.2.10-r3.ebuild,v 1.12 2008/07/15 19:50:51 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mpg321/mpg321-0.2.10-r3.ebuild,v 1.13 2009/06/01 18:03:46 ssuominen Exp $
 
 inherit eutils
 
@@ -13,9 +13,10 @@
 KEYWORDS="alpha amd64 ~hppa -mips ppc ppc64 sparc x86 ~x86-fbsd"
 IUSE=""
 
-DEPEND="media-libs/libmad
+RDEPEND="media-libs/libmad
 	media-libs/libid3tag
 	media-libs/libao"
+DEPEND="${RDEPEND}"
 
 src_unpack() {
 	unpack ${A}






^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-06-01 18:03 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-06-01 18:03 [gentoo-commits] gentoo-x86 commit in media-sound/mpg321: mpg321-0.2.10-r3.ebuild Samuli Suominen (ssuominen)
  -- strict thread matches above, loose matches on Subject: below --
2008-05-17  9:58 Samuli Suominen (drac)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox