diff options
author | Mamoru Komachi <usata@gentoo.org> | 2005-05-16 04:19:10 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2005-05-16 04:19:10 +0000 |
commit | 4e117c0286174dea0a9ba60617e73c2ef6c805dc (patch) | |
tree | 848171593505c0ed926793d786e88eb183c2ec41 /app-emacs/mpg123-el | |
parent | version bump (bug #90098) (diff) | |
download | historical-4e117c0286174dea0a9ba60617e73c2ef6c805dc.tar.gz historical-4e117c0286174dea0a9ba60617e73c2ef6c805dc.tar.bz2 historical-4e117c0286174dea0a9ba60617e73c2ef6c805dc.zip |
use toolchain-funcs.eclass instead of gcc.eclass; bug #92745.
Package-Manager: portage-2.0.51.21-r1
Diffstat (limited to 'app-emacs/mpg123-el')
-rw-r--r-- | app-emacs/mpg123-el/Manifest | 4 | ||||
-rw-r--r-- | app-emacs/mpg123-el/mpg123-el-1.42.ebuild | 9 |
2 files changed, 7 insertions, 6 deletions
diff --git a/app-emacs/mpg123-el/Manifest b/app-emacs/mpg123-el/Manifest index a79dbcba676b..90fdc2b07d84 100644 --- a/app-emacs/mpg123-el/Manifest +++ b/app-emacs/mpg123-el/Manifest @@ -1,5 +1,5 @@ -MD5 8861abe68a550765f5d48770401de6f4 ChangeLog 567 MD5 fcd33d07e4ee719b01157946734f4fe8 metadata.xml 158 -MD5 8f9a5536fab431bbdcb2830e57c8802f mpg123-el-1.42.ebuild 980 +MD5 c44d4d9200078ecedd193aaed5f43923 mpg123-el-1.42.ebuild 1040 +MD5 8861abe68a550765f5d48770401de6f4 ChangeLog 567 MD5 21ae7501baae4ed25333b0a82217762d files/50mpg123-el-gentoo.el 156 MD5 425a8001688ad8ceca2b40245a62be50 files/digest-mpg123-el-1.42 66 diff --git a/app-emacs/mpg123-el/mpg123-el-1.42.ebuild b/app-emacs/mpg123-el/mpg123-el-1.42.ebuild index afe89cc1b417..ba9b831632bf 100644 --- a/app-emacs/mpg123-el/mpg123-el-1.42.ebuild +++ b/app-emacs/mpg123-el/mpg123-el-1.42.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/mpg123-el/mpg123-el-1.42.ebuild,v 1.4 2005/01/01 13:54:37 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/mpg123-el/mpg123-el-1.42.ebuild,v 1.5 2005/05/16 04:19:10 usata Exp $ -inherit gcc elisp +inherit toolchain-funcs elisp IUSE="oggvorbis" @@ -24,8 +24,9 @@ KEYWORDS="x86" SITEFILE="50mpg123-el-gentoo.el" src_compile(){ - $(gcc-getCC) ${CFLAGS} -o tagput tagput.c || die - $(gcc-getCC) ${CFLAGS} -o id3put id3put.c || die + sed -i -e "s/\(mainloop:\)/\1 ;/" tagput.c || die + "$(tc-getCC)" ${CFLAGS} -o tagput tagput.c || die + "$(tc-getCC)" ${CFLAGS} -o id3put id3put.c || die elisp-compile *.el } |