diff options
author | Daniel Pielmeier <billie@gentoo.org> | 2011-04-11 19:12:32 +0000 |
---|---|---|
committer | Daniel Pielmeier <billie@gentoo.org> | 2011-04-11 19:12:32 +0000 |
commit | 9fb881b0e79ddb73fcaee096209cd568a38f5ecd (patch) | |
tree | 65efbef6832b735328f7beecfdb300a36af6a8d5 /dev-libs/libisofs | |
parent | Add latest version to the tree, remove the older unstable version. (diff) | |
download | gentoo-2-9fb881b0e79ddb73fcaee096209cd568a38f5ecd.tar.gz gentoo-2-9fb881b0e79ddb73fcaee096209cd568a38f5ecd.tar.bz2 gentoo-2-9fb881b0e79ddb73fcaee096209cd568a38f5ecd.zip |
Version bump. Switch to EAPI 4. Add static-libs USE flag.
(Portage version: 2.1.9.42/cvs/Linux i686)
Diffstat (limited to 'dev-libs/libisofs')
-rw-r--r-- | dev-libs/libisofs/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/libisofs/libisofs-1.0.6.ebuild | 40 |
2 files changed, 46 insertions, 1 deletions
diff --git a/dev-libs/libisofs/ChangeLog b/dev-libs/libisofs/ChangeLog index 240e8f17285c..6ff7852b8eec 100644 --- a/dev-libs/libisofs/ChangeLog +++ b/dev-libs/libisofs/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/libisofs # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libisofs/ChangeLog,v 1.83 2011/03/23 20:29:25 xarthisius Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libisofs/ChangeLog,v 1.84 2011/04/11 19:12:32 billie Exp $ + +*libisofs-1.0.6 (11 Apr 2011) + + 11 Apr 2011; Daniel Pielmeier <billie@gentoo.org> +libisofs-1.0.6.ebuild: + Version bump. Switch to EAPI 4. Add static-libs USE flag. 23 Mar 2011; Kacper Kowalik <xarthisius@gentoo.org> libisofs-1.0.0.ebuild: ppc/ppc64 stable wrt #355097 diff --git a/dev-libs/libisofs/libisofs-1.0.6.ebuild b/dev-libs/libisofs/libisofs-1.0.6.ebuild new file mode 100644 index 000000000000..f8d05526806c --- /dev/null +++ b/dev-libs/libisofs/libisofs-1.0.6.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libisofs/libisofs-1.0.6.ebuild,v 1.1 2011/04/11 19:12:32 billie Exp $ + +EAPI=4 + +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 ~ppc ~ppc64 ~x86" +IUSE="acl debug static-libs verbose-debug xattr zlib" + +RDEPEND="acl? ( virtual/acl ) + xattr? ( sys-apps/attr ) + zlib? ( sys-libs/zlib )" +DEPEND="${RDEPEND} + dev-util/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" +} |