diff options
author | Daniel Pielmeier <billie@gentoo.org> | 2016-09-30 18:03:16 +0200 |
---|---|---|
committer | Daniel Pielmeier <billie@gentoo.org> | 2016-09-30 18:03:16 +0200 |
commit | 8ad7b07941d2c2fdc8f8c17920d43cf57e7c1c46 (patch) | |
tree | 3e51ae091a2cfa85702d348cd17f4b833d70a925 /dev-libs/libisofs/libisofs-1.4.6.ebuild | |
parent | dev-libs/libburn: Version bump. (diff) | |
download | gentoo-8ad7b07941d2c2fdc8f8c17920d43cf57e7c1c46.tar.gz gentoo-8ad7b07941d2c2fdc8f8c17920d43cf57e7c1c46.tar.bz2 gentoo-8ad7b07941d2c2fdc8f8c17920d43cf57e7c1c46.zip |
dev-libs/libisofs: Version bump.
Package-Manager: portage-2.3.0
Diffstat (limited to 'dev-libs/libisofs/libisofs-1.4.6.ebuild')
-rw-r--r-- | dev-libs/libisofs/libisofs-1.4.6.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/dev-libs/libisofs/libisofs-1.4.6.ebuild b/dev-libs/libisofs/libisofs-1.4.6.ebuild new file mode 100644 index 000000000000..c618109443e4 --- /dev/null +++ b/dev-libs/libisofs/libisofs-1.4.6.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +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="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 +} |