diff options
author | Daniel Pielmeier <billie@gentoo.org> | 2015-05-22 17:48:33 +0000 |
---|---|---|
committer | Daniel Pielmeier <billie@gentoo.org> | 2015-05-22 17:48:33 +0000 |
commit | 149549944f7e197d75664d2d5980a8114443ec65 (patch) | |
tree | e84d953a462c6e0a2d77eb1f77ba899b137af438 /dev-libs | |
parent | Version bump. This fixes bug #549862. Thanks to Sebastian Pipping for the rep... (diff) | |
download | gentoo-2-149549944f7e197d75664d2d5980a8114443ec65.tar.gz gentoo-2-149549944f7e197d75664d2d5980a8114443ec65.tar.bz2 gentoo-2-149549944f7e197d75664d2d5980a8114443ec65.zip |
Version bump. This fixes bug #549862. Thanks to Sebastian Pipping for the report.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 215AD14D)
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/libburn/ChangeLog | 8 | ||||
-rw-r--r-- | dev-libs/libburn/libburn-1.4.0.ebuild | 43 |
2 files changed, 50 insertions, 1 deletions
diff --git a/dev-libs/libburn/ChangeLog b/dev-libs/libburn/ChangeLog index f25e945ce5be..fff9ba403156 100644 --- a/dev-libs/libburn/ChangeLog +++ b/dev-libs/libburn/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-libs/libburn # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libburn/ChangeLog,v 1.195 2015/05/22 17:11:03 billie Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libburn/ChangeLog,v 1.196 2015/05/22 17:48:33 billie Exp $ + +*libburn-1.4.0 (22 May 2015) + + 22 May 2015; Daniel Pielmeier <billie@gentoo.org> +libburn-1.4.0.ebuild: + Version bump. This fixes bug #549862. Thanks to Sebastian Pipping for the + report. 22 May 2015; Daniel Pielmeier <billie@gentoo.org> -files/libburn-1.3.6-buffer-overflow.patch: diff --git a/dev-libs/libburn/libburn-1.4.0.ebuild b/dev-libs/libburn/libburn-1.4.0.ebuild new file mode 100644 index 000000000000..dfed44736f20 --- /dev/null +++ b/dev-libs/libburn/libburn-1.4.0.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libburn/libburn-1.4.0.ebuild,v 1.1 2015/05/22 17:48:33 billie Exp $ + +EAPI=5 + +inherit eutils + +DESCRIPTION="Libburn is an open-source library for reading, mastering and writing optical discs" +HOMEPAGE="http://libburnia-project.org" +SRC_URI="http://files.libburnia-project.org/releases/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="cdio debug static-libs track-src-odirect" + +RDEPEND="cdio? ( >=dev-libs/libcdio-0.83 )" +DEPEND="$RDEPEND + virtual/pkgconfig" + +src_configure() { + econf \ + $(use_enable static-libs static) \ + $(use_enable track-src-odirect) \ + --enable-pkg-check-modules \ + $(use_enable cdio libcdio) \ + --disable-ldconfig-at-install \ + $(use_enable debug) +} + +src_install() { + default + + dodoc CONTRIBUTORS doc/{comments,*.txt} + + docinto cdrskin + dodoc cdrskin/{*.txt,README} + docinto cdrskin/html + dohtml cdrskin/cdrskin_eng.html + + prune_libtool_files --all +} |