diff options
author | 2012-05-21 20:55:53 +0000 | |
---|---|---|
committer | 2012-05-21 20:55:53 +0000 | |
commit | 67c86645e4d3133f2e3ea471c9d1b4d0c8aa58d6 (patch) | |
tree | 8e04ec91e18f045dfcb4ecef8942444c34589a2f /dev-libs | |
parent | Add -i18n=de to doman for the German ones. (diff) | |
download | gentoo-2-67c86645e4d3133f2e3ea471c9d1b4d0c8aa58d6.tar.gz gentoo-2-67c86645e4d3133f2e3ea471c9d1b4d0c8aa58d6.tar.bz2 gentoo-2-67c86645e4d3133f2e3ea471c9d1b4d0c8aa58d6.zip |
Version bump.
(Portage version: 2.2.0_alpha107/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/libatasmart/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/libatasmart/libatasmart-0.19.ebuild | 31 |
2 files changed, 37 insertions, 1 deletions
diff --git a/dev-libs/libatasmart/ChangeLog b/dev-libs/libatasmart/ChangeLog index 9e98bafc42a3..cc3f4e94c83e 100644 --- a/dev-libs/libatasmart/ChangeLog +++ b/dev-libs/libatasmart/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/libatasmart # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libatasmart/ChangeLog,v 1.31 2012/05/19 12:19:40 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libatasmart/ChangeLog,v 1.32 2012/05/21 20:55:53 ssuominen Exp $ + +*libatasmart-0.19 (21 May 2012) + + 21 May 2012; Samuli Suominen <ssuominen@gentoo.org> +libatasmart-0.19.ebuild: + Version bump. 19 May 2012; Anthony G. Basile <blueness@gentoo.org> libatasmart-0.18.ebuild: Keyword mips diff --git a/dev-libs/libatasmart/libatasmart-0.19.ebuild b/dev-libs/libatasmart/libatasmart-0.19.ebuild new file mode 100644 index 000000000000..d03ea802dba9 --- /dev/null +++ b/dev-libs/libatasmart/libatasmart-0.19.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libatasmart/libatasmart-0.19.ebuild,v 1.1 2012/05/21 20:55:53 ssuominen Exp $ + +EAPI=4 + +DESCRIPTION="A small and lightweight parser library for ATA S.M.A.R.T. hard disks" +HOMEPAGE="http://0pointer.de/blog/projects/being-smart.html" +SRC_URI="http://0pointer.de/public/${P}.tar.xz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86" +IUSE="static-libs" + +RDEPEND=">=sys-fs/udev-143" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +DOCS="README" + +src_configure() { + econf \ + --docdir=/usr/share/doc/${PF} \ + $(use_enable static-libs static) +} + +src_install() { + default + rm -f "${ED}"/usr/lib*/lib*.la +} |