Gentoo Archives: gentoo-commits

From: Sebastian Pipping <sping@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/betagarden:master commit in: x11-libs/smooth/
Date: Mon, 02 Nov 2015 15:36:12
Message-Id: 1446478521.f1f51a61387434739d8a1dfe81a49ca20a82d2cf.sping@gentoo
1 commit: f1f51a61387434739d8a1dfe81a49ca20a82d2cf
2 Author: Sebastian Pipping <sebastian <AT> pipping <DOT> org>
3 AuthorDate: Mon Nov 2 15:35:21 2015 +0000
4 Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 2 15:35:21 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/betagarden.git/commit/?id=f1f51a61
7
8 x11-libs/smooth: 0.8.72.0_pre1
9
10 x11-libs/smooth/smooth-0.8.72.0_pre1.ebuild | 55 +++++++++++++++++++++++++++++
11 1 file changed, 55 insertions(+)
12
13 diff --git a/x11-libs/smooth/smooth-0.8.72.0_pre1.ebuild b/x11-libs/smooth/smooth-0.8.72.0_pre1.ebuild
14 new file mode 100644
15 index 0000000..76d04cf
16 --- /dev/null
17 +++ b/x11-libs/smooth/smooth-0.8.72.0_pre1.ebuild
18 @@ -0,0 +1,55 @@
19 +# Copyright 1999-2015 Gentoo Foundation
20 +# Distributed under the terms of the GNU General Public License v2
21 +# $Id$
22 +
23 +EAPI="5"
24 +
25 +inherit eutils
26 +
27 +MY_PV=${PV/_/-}
28 +DESCRIPTION="smooth Class Library"
29 +HOMEPAGE="http://www.smooth-project.org/"
30 +SRC_URI="https://freac.org/preview/${PN}-${MY_PV}.tar.gz"
31 +
32 +LICENSE="Artistic-2"
33 +SLOT="0"
34 +KEYWORDS="~amd64 ~x86"
35 +IUSE=""
36 +
37 +RDEPEND="
38 + dev-libs/atk
39 + dev-libs/fribidi
40 + dev-libs/glib:*
41 + dev-libs/libxml2
42 + media-libs/fontconfig
43 + media-libs/freetype
44 + media-libs/libpng:*
45 + sys-devel/gcc:*[cxx]
46 + sys-libs/zlib
47 + virtual/jpeg:*
48 + x11-libs/cairo
49 + x11-libs/gdk-pixbuf
50 + x11-libs/gtk+:2
51 + x11-libs/libX11
52 + x11-libs/libXmu
53 + x11-libs/libXt
54 + x11-libs/pango
55 + "
56 +DEPEND="${RDEPEND}"
57 +
58 +DOCS=( ChangeLog ToDo.xml )
59 +
60 +S="${WORKDIR}"/${PN}-${MY_PV}
61 +
62 +src_compile() {
63 + emake prefix=/usr
64 +}
65 +
66 +src_install() {
67 + addpredict /etc/ld.so.cache:/etc/ld.so.cache~
68 +
69 + emake DESTDIR="${D}" prefix=/usr install
70 +
71 + insinto /usr/share/${PF}/
72 + doins -r doc samples tutorial
73 +}