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