diff options
author | Daniel Pielmeier <billie@gentoo.org> | 2013-03-20 18:26:54 +0000 |
---|---|---|
committer | Daniel Pielmeier <billie@gentoo.org> | 2013-03-20 18:26:54 +0000 |
commit | 00d2326156d7119451b60a7d43ab99c242088c86 (patch) | |
tree | 721c295d2cdd830b4ac5bba00171a4b041952b57 /dev-libs/libisofs | |
parent | Version bump. (diff) | |
download | gentoo-2-00d2326156d7119451b60a7d43ab99c242088c86.tar.gz gentoo-2-00d2326156d7119451b60a7d43ab99c242088c86.tar.bz2 gentoo-2-00d2326156d7119451b60a7d43ab99c242088c86.zip |
Version bump.
(Portage version: 2.1.11.55/cvs/Linux i686, signed Manifest commit with key 215AD14D)
Diffstat (limited to 'dev-libs/libisofs')
-rw-r--r-- | dev-libs/libisofs/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/libisofs/libisofs-1.2.8.ebuild | 40 |
2 files changed, 46 insertions, 1 deletions
diff --git a/dev-libs/libisofs/ChangeLog b/dev-libs/libisofs/ChangeLog index c0baf9da14c6..0e55609d2395 100644 --- a/dev-libs/libisofs/ChangeLog +++ b/dev-libs/libisofs/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/libisofs # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libisofs/ChangeLog,v 1.117 2013/01/17 19:16:08 billie Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libisofs/ChangeLog,v 1.118 2013/03/20 18:26:54 billie Exp $ + +*libisofs-1.2.8 (20 Mar 2013) + + 20 Mar 2013; Daniel Pielmeier <billie@gentoo.org> +libisofs-1.2.8.ebuild: + Version bump. *libisofs-1.2.6 (17 Jan 2013) diff --git a/dev-libs/libisofs/libisofs-1.2.8.ebuild b/dev-libs/libisofs/libisofs-1.2.8.ebuild new file mode 100644 index 000000000000..6a193a3b6cf0 --- /dev/null +++ b/dev-libs/libisofs/libisofs-1.2.8.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libisofs/libisofs-1.2.8.ebuild,v 1.1 2013/03/20 18:26:54 billie Exp $ + +EAPI=5 + +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/{checksums.txt,susp_aaip*,Tutorial,zisofs_format.txt} + + find "${D}" -name '*.la' -exec rm -rf '{}' '+' || die "la removal failed" +} |