dev-libs/libburn: Version bump.
authorDaniel Pielmeier <billie@gentoo.org>
Sun, 24 Jan 2016 16:33:23 +0000 (17:33 +0100)
committerDaniel Pielmeier <billie@gentoo.org>
Sun, 24 Jan 2016 16:33:47 +0000 (17:33 +0100)
Package-Manager: portage-2.2.26

dev-libs/libburn/Manifest
dev-libs/libburn/libburn-1.3.8.ebuild
dev-libs/libburn/libburn-1.4.0.ebuild
dev-libs/libburn/libburn-1.4.2.ebuild [new file with mode: 0644]

index 1e243e64bcd0168fc593beca98c49d04d141f72f..781253f68a5793c5e2a2a2e223fc649178d9cba4 100644 (file)
@@ -1,2 +1,3 @@
 DIST libburn-1.3.8.tar.gz 967404 SHA256 46266bdd4b37ca9700a44bbd8dbfbf3526423ede25751fd2f0211b2b5ce29283 SHA512 4f279319b49bc5f5d42751fcab16bfe949e14e6e1018f9138bcc9f8e10a298ecf9795780d5f8807c5c2bf1cc0332f931b709f1fb5809f30abb8054297370f3c6 WHIRLPOOL a814ab1c88b70b03788d490c1d6f9305878613d529fdd58df65a13bc683cf2e6c4e877192f85ffca07474a866115a34ef3932e838097e88db08d73554ed2ad3c
 DIST libburn-1.4.0.tar.gz 970395 SHA256 6c975abae4ae1f80e47fc5d1e235f85157f73e954c84627a5ef85d8b1b95ae94 SHA512 33c6eabe79343c9ebd198fb7c23900cac6b92b6834d80d2060062c48ca32a243566ebb3f86b51c5d149ef6aef4da2eaa340b3094960b0bce1fd67c0b82ee75f1 WHIRLPOOL 82f8186e9471a2046c627261da831250d0c60a9a1f8f6658a4238b2c35480b153a949189a5b89235449602919a33b81ff0c9fc728cef1757979e54080089a9d7
+DIST libburn-1.4.2.tar.gz 970246 SHA256 bf641ac8e372b18e52fa911876b21f759e17804aa907eeae6c852f053729610a SHA512 68bae9ce50d99e7cd7dff60c39636af824142640c474cd67eba5b5659f2ae62c4e693c846f090f866a4b9cc303abf3da7a69f1431bc9e140f4ae2ca71ec59688 WHIRLPOOL eca0acf8519d2326af83ebf76903cabb67cb57b3b3815ef3cc028a83255cb392ae879b7a1d55e0ad95dab6977befae06d0a0bff4f7a1c1bfc9188f1d1bfaeea9
index f6c8a8c7ab2b433477fb8241beaec5a372f9bc29..291e67c49e3c90aaab734f47d38cf0c01a5de0ea 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -6,7 +6,7 @@ EAPI=5
 
 inherit eutils
 
-DESCRIPTION="Libburn is an open-source library for reading, mastering and writing optical discs"
+DESCRIPTION="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"
 
index bf3b79fa415e74d5833da532ed4102f7d43ddc67..3d8b4d1d6be1d5aeebff5914ff654eb71a6c9491 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -6,7 +6,7 @@ EAPI=5
 
 inherit eutils
 
-DESCRIPTION="Libburn is an open-source library for reading, mastering and writing optical discs"
+DESCRIPTION="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"
 
diff --git a/dev-libs/libburn/libburn-1.4.2.ebuild b/dev-libs/libburn/libburn-1.4.2.ebuild
new file mode 100644 (file)
index 0000000..3d8b4d1
--- /dev/null
@@ -0,0 +1,43 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils
+
+DESCRIPTION="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
+}