Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-libs/dlib: dlib-18.5.ebuild ChangeLog dlib-18.3.ebuild
Date: Wed, 21 May 2014 16:38:21
Message-Id: 20140521163817.CAF652004C@flycatcher.gentoo.org
1 bicatali 14/05/21 16:38:17
2
3 Modified: ChangeLog
4 Added: dlib-18.5.ebuild
5 Removed: dlib-18.3.ebuild
6 Log:
7 Version bump
8
9 (Portage version: HEAD/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)
10
11 Revision Changes Path
12 1.8 sci-libs/dlib/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/dlib/ChangeLog?rev=1.8&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/dlib/ChangeLog?rev=1.8&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/dlib/ChangeLog?r1=1.7&r2=1.8
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sci-libs/dlib/ChangeLog,v
21 retrieving revision 1.7
22 retrieving revision 1.8
23 diff -u -r1.7 -r1.8
24 --- ChangeLog 9 Sep 2013 16:56:44 -0000 1.7
25 +++ ChangeLog 21 May 2014 16:38:17 -0000 1.8
26 @@ -1,6 +1,12 @@
27 # ChangeLog for sci-libs/dlib
28 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/dlib/ChangeLog,v 1.7 2013/09/09 16:56:44 bicatali Exp $
30 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/dlib/ChangeLog,v 1.8 2014/05/21 16:38:17 bicatali Exp $
32 +
33 +*dlib-18.5 (21 May 2014)
34 +
35 + 21 May 2014; Sébastien Fabbro <bicatali@g.o> +dlib-18.5.ebuild,
36 + -dlib-18.3.ebuild:
37 + Version bump
38
39 *dlib-18.4 (09 Sep 2013)
40
41
42
43
44 1.1 sci-libs/dlib/dlib-18.5.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/dlib/dlib-18.5.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/dlib/dlib-18.5.ebuild?rev=1.1&content-type=text/plain
48
49 Index: dlib-18.5.ebuild
50 ===================================================================
51 # Copyright 1999-2014 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/sci-libs/dlib/dlib-18.5.ebuild,v 1.1 2014/05/21 16:38:17 bicatali Exp $
54
55 EAPI=5
56
57 inherit flag-o-matic toolchain-funcs
58
59 DESCRIPTION="Numerical and networking C++ library"
60 HOMEPAGE="http://dlib.net/"
61 SRC_URI="mirror://sourceforge/dclib/${P}.tar.bz2"
62
63 LICENSE="Boost-1.0"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
66 IUSE="blas doc examples jpeg lapack png test X"
67
68 RDEPEND="
69 blas? ( virtual/blas )
70 jpeg? ( virtual/jpeg )
71 lapack? ( virtual/lapack )
72 png? ( media-libs/libpng:0= )
73 X? ( x11-libs/libX11 )"
74 DEPEND="test? ( ${RDEPEND} )"
75
76 src_prepare() {
77 epatch "${FILESDIR}"/${PN}-17.48-makefile-test.patch
78 }
79
80 src_test() {
81 cd dlib/test
82 emake CXX="$(tc-getCXX)" CXXFLAGS="${CXXFLAGS}"
83 ./test --runall || die
84 }
85
86 src_install() {
87 dodoc dlib/README.txt
88 rm -r dlib/{README,LICENSE}.txt dlib/test || die
89 doheader -r dlib
90 use doc && dohtml -r docs/*
91 if use examples; then
92 insinto /usr/share/doc/${PF}
93 doins -r examples
94 fi
95 }