diff options
author | Daniel Pielmeier <billie@gentoo.org> | 2015-05-22 17:50:03 +0000 |
---|---|---|
committer | Daniel Pielmeier <billie@gentoo.org> | 2015-05-22 17:50:03 +0000 |
commit | a7e9384d3208b5ac44ded0c76bdf162ebeab1d08 (patch) | |
tree | f8457f252470f15bb6a554d8acd86e320f70a5cb /dev-libs | |
parent | Version bump. This fixes bug #549862. Thanks to Sebastian Pipping for the rep... (diff) | |
download | gentoo-2-a7e9384d3208b5ac44ded0c76bdf162ebeab1d08.tar.gz gentoo-2-a7e9384d3208b5ac44ded0c76bdf162ebeab1d08.tar.bz2 gentoo-2-a7e9384d3208b5ac44ded0c76bdf162ebeab1d08.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/libisofs/ChangeLog | 8 | ||||
-rw-r--r-- | dev-libs/libisofs/libisofs-1.4.0.ebuild | 42 |
2 files changed, 49 insertions, 1 deletions
diff --git a/dev-libs/libisofs/ChangeLog b/dev-libs/libisofs/ChangeLog index 4de17640ebc8..6f6e21153945 100644 --- a/dev-libs/libisofs/ChangeLog +++ b/dev-libs/libisofs/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-libs/libisofs # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libisofs/ChangeLog,v 1.178 2015/04/03 10:23:55 billie Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libisofs/ChangeLog,v 1.179 2015/05/22 17:50:03 billie Exp $ + +*libisofs-1.4.0 (22 May 2015) + + 22 May 2015; Daniel Pielmeier <billie@gentoo.org> +libisofs-1.4.0.ebuild: + Version bump. This fixes bug #549862. Thanks to Sebastian Pipping for the + report. 03 Apr 2015; Daniel Pielmeier <billie@gentoo.org> -libisofs-1.3.4.ebuild: Remove old. diff --git a/dev-libs/libisofs/libisofs-1.4.0.ebuild b/dev-libs/libisofs/libisofs-1.4.0.ebuild new file mode 100644 index 000000000000..edc5255144f3 --- /dev/null +++ b/dev-libs/libisofs/libisofs-1.4.0.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libisofs/libisofs-1.4.0.ebuild,v 1.1 2015/05/22 17:50:03 billie Exp $ + +EAPI=5 + +inherit eutils + +DESCRIPTION="libisofs 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="acl debug static-libs verbose-debug xattr zlib" + +RDEPEND="acl? ( virtual/acl ) + xattr? ( sys-apps/attr ) + zlib? ( sys-libs/zlib )" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +src_configure() { + econf \ + $(use_enable static-libs static) \ + $(use_enable debug) \ + $(use_enable verbose-debug) \ + $(use_enable acl libacl) \ + $(use_enable xattr) \ + $(use_enable zlib) \ + --disable-libjte \ + --disable-ldconfig-at-install +} + +src_install() { + default + + dodoc Roadmap doc/{*.txt,Tutorial} + + prune_libtool_files --all +} |