diff options
-rw-r--r-- | media-libs/libogg/ChangeLog | 9 | ||||
-rw-r--r-- | media-libs/libogg/libogg-1.1.4.ebuild | 29 |
2 files changed, 36 insertions, 2 deletions
diff --git a/media-libs/libogg/ChangeLog b/media-libs/libogg/ChangeLog index eeee0df463d0..f5c522396609 100644 --- a/media-libs/libogg/ChangeLog +++ b/media-libs/libogg/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/libogg -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libogg/ChangeLog,v 1.55 2008/04/18 21:16:38 flameeyes Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libogg/ChangeLog,v 1.56 2009/06/25 08:56:04 aballier Exp $ + +*libogg-1.1.4 (25 Jun 2009) + + 25 Jun 2009; Alexis Ballier <aballier@gentoo.org> +libogg-1.1.4.ebuild: + version bump, by Arseny Solokha <b0ntrict0r@yandex.ru>, bug #275348 *libogg-1.1.3-r1 (18 Apr 2008) diff --git a/media-libs/libogg/libogg-1.1.4.ebuild b/media-libs/libogg/libogg-1.1.4.ebuild new file mode 100644 index 000000000000..f54a5b719c26 --- /dev/null +++ b/media-libs/libogg/libogg-1.1.4.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libogg/libogg-1.1.4.ebuild,v 1.1 2009/06/25 08:56:04 aballier Exp $ + +inherit eutils libtool + +DESCRIPTION="the Ogg media file format library" +HOMEPAGE="http://xiph.org/ogg/" +SRC_URI="http://downloads.xiph.org/releases/ogg/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="" + +src_unpack() { + unpack ${A} + cd "${S}" + + elibtoolize + epunt_cxx +} + +src_install() { + emake DESTDIR="${D}" install || die "make install failed" + dodoc CHANGES AUTHORS + + find "${D}" -name '*.la' -delete +} |