diff options
author | Alexis Ballier <aballier@gentoo.org> | 2008-06-01 16:46:52 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2008-06-01 16:46:52 +0000 |
commit | 7577617d041c45ddc4dfad9ce255c108f44aa402 (patch) | |
tree | e68cbaceeebe65baf7194b076eae2ea945dc4d60 /dev-libs/libvolume_id | |
parent | Fix autoconf-2.62 failure, bug #218208; Install liballeg.so symlink, bug #220955 (diff) | |
download | gentoo-2-7577617d041c45ddc4dfad9ce255c108f44aa402.tar.gz gentoo-2-7577617d041c45ddc4dfad9ce255c108f44aa402.tar.bz2 gentoo-2-7577617d041c45ddc4dfad9ce255c108f44aa402.zip |
version bump
(Portage version: 2.1.5.2)
Diffstat (limited to 'dev-libs/libvolume_id')
-rw-r--r-- | dev-libs/libvolume_id/ChangeLog | 10 | ||||
-rw-r--r-- | dev-libs/libvolume_id/libvolume_id-0.81.0.ebuild | 33 |
2 files changed, 41 insertions, 2 deletions
diff --git a/dev-libs/libvolume_id/ChangeLog b/dev-libs/libvolume_id/ChangeLog index 7b1ad3bcae81..6dbf4297e259 100644 --- a/dev-libs/libvolume_id/ChangeLog +++ b/dev-libs/libvolume_id/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-libs/libvolume_id -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libvolume_id/ChangeLog,v 1.3 2007/12/25 16:18:43 phreak Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libvolume_id/ChangeLog,v 1.4 2008/06/01 16:46:52 aballier Exp $ + +*libvolume_id-0.81.0 (01 Jun 2008) + + 01 Jun 2008; Alexis Ballier <aballier@gentoo.org> + +libvolume_id-0.81.0.ebuild: + version bump 25 Dec 2007; Christian Heim <phreak@gentoo.org> metadata.xml: Removing uberlord from metadata.xml as per #199318. Assigning to diff --git a/dev-libs/libvolume_id/libvolume_id-0.81.0.ebuild b/dev-libs/libvolume_id/libvolume_id-0.81.0.ebuild new file mode 100644 index 000000000000..853f79810276 --- /dev/null +++ b/dev-libs/libvolume_id/libvolume_id-0.81.0.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libvolume_id/libvolume_id-0.81.0.ebuild,v 1.1 2008/06/01 16:46:52 aballier Exp $ + +DESCRIPTION="Library to provide file system information" +HOMEPAGE="http://www.marcuscom.com" +SRC_URI="http://www.marcuscom.com/downloads/${PF}.tar.bz2" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~x86-fbsd" +IUSE="static" + +DEPEND="" +RDEPEND="" + +src_compile() { + make E="@echo" RANLIB=ranlib AR=ar Q=@ +} + +src_install() { + dodir /usr/share/pkgconfig + insinto /usr/share/pkgconfig + doins libvolume_id.pc + + insinto /usr/include + doins libvolume_id.h + + insinto /usr + dolib libvolume_id.so.0 + dosym libvolume_id.so.0 /usr/lib/libvolume_id.so + use static && dolib libvolume_id.a +} |