diff options
author | Robert Buchholz <rbu@gentoo.org> | 2007-10-16 18:36:32 +0000 |
---|---|---|
committer | Robert Buchholz <rbu@gentoo.org> | 2007-10-16 18:36:32 +0000 |
commit | 157b91a77100d5613ac6a524274969f0f260ab3c (patch) | |
tree | 14e671eed9841241bdddbb11f65637b683ad7462 /media-libs | |
parent | Version bump. (diff) | |
download | gentoo-2-157b91a77100d5613ac6a524274969f0f260ab3c.tar.gz gentoo-2-157b91a77100d5613ac6a524274969f0f260ab3c.tar.bz2 gentoo-2-157b91a77100d5613ac6a524274969f0f260ab3c.zip |
Version bump, fixing bugs for whitespace handling.
(Portage version: 2.1.3.14)
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/libspiff/ChangeLog | 10 | ||||
-rw-r--r-- | media-libs/libspiff/files/digest-libspiff-0.8.2 | 3 | ||||
-rw-r--r-- | media-libs/libspiff/libspiff-0.8.2.ebuild | 40 |
3 files changed, 52 insertions, 1 deletions
diff --git a/media-libs/libspiff/ChangeLog b/media-libs/libspiff/ChangeLog index 7670c868dfca..73a8d9221bce 100644 --- a/media-libs/libspiff/ChangeLog +++ b/media-libs/libspiff/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for media-libs/libspiff # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libspiff/ChangeLog,v 1.12 2007/09/19 14:36:31 rbu Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libspiff/ChangeLog,v 1.13 2007/10/16 18:36:32 rbu Exp $ + + 16 Oct 2007; Robert Buchholz <rbu@gentoo.org> +libspiff-0.8.2.ebuild: + Version bump, fixing bugs for whitespace handling. + +*libspiff-0.8.2 (16 Oct 2007) + + 16 Oct 2007; Robert Buchholz <rbu@gentoo.org> +libspiff-0.8.2.ebuild: + Version bump, fixing bugs for whitespace handling. 19 Sep 2007; Robert Buchholz <rbu@gentoo.org> libspiff-0.8.0.ebuild: einfo->elog diff --git a/media-libs/libspiff/files/digest-libspiff-0.8.2 b/media-libs/libspiff/files/digest-libspiff-0.8.2 new file mode 100644 index 000000000000..2ab9f8608f89 --- /dev/null +++ b/media-libs/libspiff/files/digest-libspiff-0.8.2 @@ -0,0 +1,3 @@ +MD5 e6505bdff9048bf61533c00caf48d553 libspiff-0.8.2.tar.bz2 506531 +RMD160 3149da20140fa2604451c70c020033e27c7bdd4e libspiff-0.8.2.tar.bz2 506531 +SHA256 8451c7182a99f0f4a88b3c19234c5182689f91444c50fcb510452b5e5b8a7805 libspiff-0.8.2.tar.bz2 506531 diff --git a/media-libs/libspiff/libspiff-0.8.2.ebuild b/media-libs/libspiff/libspiff-0.8.2.ebuild new file mode 100644 index 000000000000..64931455da82 --- /dev/null +++ b/media-libs/libspiff/libspiff-0.8.2.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libspiff/libspiff-0.8.2.ebuild,v 1.1 2007/10/16 18:36:32 rbu Exp $ + +DESCRIPTION="Library for XSPF playlist reading and writing" +HOMEPAGE="http://libspiff.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" +LICENSE="LGPL-2.1 BSD" +SLOT="0" +KEYWORDS="~amd64 ~sparc ~x86 ~ppc" +IUSE="doc" +RDEPEND=">=dev-libs/expat-1.95.8" +DEPEND="${RDEPEND} + >=dev-libs/uriparser-0.3.3-r1 + doc? ( app-doc/doxygen )" + +src_compile() { + econf || die "configure failed" + emake || die "emake failed" + + if use doc; then + ebegin "Creating documentation" + cd "${S}/doc" + doxygen Doxyfile + eend 0 + fi +} + +src_install() { + emake DESTDIR="${D}" install || die "make install failed" + dodoc README AUTHORS ChangeLog + + if use doc; then + dohtml doc/html/* + fi +} + +pkg_postinst() { + elog "libspiff-0.8.0 changed its SONAME. Please run # revdep-rebuild to recompile your XSPF applications." +} |