diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2012-08-02 22:16:36 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2012-08-02 22:16:36 +0000 |
commit | 1463cd9d7d1b904e793a6fb8337e5b1d5a59db01 (patch) | |
tree | 777ef1fdfaa3a0514ac59953804bbff7dcbf7480 /sci-libs/dlib | |
parent | Bumped to EAPI 4 and added xml(+) to PYTHON_USE_WITH (diff) | |
download | gentoo-2-1463cd9d7d1b904e793a6fb8337e5b1d5a59db01.tar.gz gentoo-2-1463cd9d7d1b904e793a6fb8337e5b1d5a59db01.tar.bz2 gentoo-2-1463cd9d7d1b904e793a6fb8337e5b1d5a59db01.zip |
Version bump. Keyword amd64-linux x86-linux
(Portage version: 2.2.01.20796-prefix/cvs/Linux x86_64)
Diffstat (limited to 'sci-libs/dlib')
-rw-r--r-- | sci-libs/dlib/ChangeLog | 8 | ||||
-rw-r--r-- | sci-libs/dlib/dlib-17.47.ebuild | 42 |
2 files changed, 48 insertions, 2 deletions
diff --git a/sci-libs/dlib/ChangeLog b/sci-libs/dlib/ChangeLog index f5b5b4b7e976..64588037294f 100644 --- a/sci-libs/dlib/ChangeLog +++ b/sci-libs/dlib/ChangeLog @@ -1,10 +1,14 @@ # ChangeLog for sci-libs/dlib # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/dlib/ChangeLog,v 1.1 2012/06/07 19:55:23 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/dlib/ChangeLog,v 1.2 2012/08/02 22:16:36 bicatali Exp $ + +*dlib-17.47 (02 Aug 2012) + + 02 Aug 2012; Sébastien Fabbro <bicatali@gentoo.org> +dlib-17.47.ebuild: + Version bump. Keyword amd64-linux x86-linux *dlib-17.46 (07 Jun 2012) 07 Jun 2012; Sébastien Fabbro <bicatali@gentoo.org> +dlib-17.46.ebuild, +metadata.xml: Initial import - diff --git a/sci-libs/dlib/dlib-17.47.ebuild b/sci-libs/dlib/dlib-17.47.ebuild new file mode 100644 index 000000000000..c664574f66aa --- /dev/null +++ b/sci-libs/dlib/dlib-17.47.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/dlib/dlib-17.47.ebuild,v 1.1 2012/08/02 22:16:36 bicatali Exp $ + +EAPI=4 + +DESCRIPTION="Numerical and networking C++ library" +HOMEPAGE="http://dlib.net/" +SRC_URI="mirror://sourceforge/dclib/${P}.tar.bz2" + +LICENSE="Boost-1.0" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="blas doc examples jpeg lapack png X" + +RDEPEND="blas? ( virtual/blas ) + jpeg? ( virtual/jpeg ) + lapack? ( virtual/lapack ) + png? ( media-libs/libpng ) + X? ( x11-libs/libX11 )" +DEPEND="${DEPEND} + virtual/pkgconfig" + +S="${WORKDIR}/${P}" + +src_test() { + cd dlib/test + emake + ./test --runall || die +} + +src_install() { + dodoc dlib/README.txt + rm -r dlib/{README,LICENSE}.txt dlib/test || diexs + insinto /usr/include + doins -r dlib + use doc && dohtml docs/* + if use examples; then + insinto /usr/share/doc/${PF} + doins -r examples + fi +} |