diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2011-01-26 17:33:09 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2011-01-26 17:33:09 +0000 |
commit | 5f30462d89350703bf5a116bf725c98050721b0e (patch) | |
tree | 419e235bf730a3390d16918be202804b5b94ec41 /sci-libs | |
parent | x86 stable wrt bug #352742 (diff) | |
download | gentoo-2-5f30462d89350703bf5a116bf725c98050721b0e.tar.gz gentoo-2-5f30462d89350703bf5a116bf725c98050721b0e.tar.bz2 gentoo-2-5f30462d89350703bf5a116bf725c98050721b0e.zip |
Version bump
(Portage version: 2.1.9.35/cvs/Linux x86_64)
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/xylib/ChangeLog | 9 | ||||
-rw-r--r-- | sci-libs/xylib/xylib-0.8.ebuild | 34 |
2 files changed, 41 insertions, 2 deletions
diff --git a/sci-libs/xylib/ChangeLog b/sci-libs/xylib/ChangeLog index aeb7ff35e7d4..d5769c67b3f0 100644 --- a/sci-libs/xylib/ChangeLog +++ b/sci-libs/xylib/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-libs/xylib -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/xylib/ChangeLog,v 1.7 2010/12/01 23:08:47 bicatali Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/xylib/ChangeLog,v 1.8 2011/01/26 17:33:09 bicatali Exp $ + +*xylib-0.8 (26 Jan 2011) + + 26 Jan 2011; Sébastien Fabbro <bicatali@gentoo.org> +xylib-0.8.ebuild: + Version bump *xylib-0.7 (01 Dec 2010) diff --git a/sci-libs/xylib/xylib-0.8.ebuild b/sci-libs/xylib/xylib-0.8.ebuild new file mode 100644 index 000000000000..adb9a2f4f0d6 --- /dev/null +++ b/sci-libs/xylib/xylib-0.8.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/xylib/xylib-0.8.ebuild,v 1.1 2011/01/26 17:33:09 bicatali Exp $ + +EAPI="3" + +DESCRIPTION="Experimental x-y data reading library" +HOMEPAGE="http://www.unipress.waw.pl/fityk/xylib/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +LICENSE="LGPL-2.1" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="bzip2 static-libs zlib" + +RDEPEND=" + dev-libs/boost + bzip2? ( app-arch/bzip2 ) + zlib? ( sys-libs/zlib )" + +DEPEND="${RDEPEND}" + +src_configure() { + econf \ + $(use_enable static-libs static) \ + $(use_with bzip2 bzlib) \ + $(use_with zlib) +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc README TODO || die "dodoc failed" +} |