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: Sat, 02 Jan 2016 23:28:13
Message-Id: 1451777225.1471f0456154291e4394dfa31cc2edc5ba9d7641.sping@gentoo
1 commit: 1471f0456154291e4394dfa31cc2edc5ba9d7641
2 Author: Sebastian Pipping <sebastian <AT> pipping <DOT> org>
3 AuthorDate: Sat Jan 2 22:25:59 2016 +0000
4 Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 2 23:27:05 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/betagarden.git/commit/?id=1471f045
7
8 x11-libs/smooth: 0.8.72.0_pre2
9
10 x11-libs/smooth/smooth-0.8.72.0_pre2.ebuild | 66 +++++++++++++++++++++++++++++
11 1 file changed, 66 insertions(+)
12
13 diff --git a/x11-libs/smooth/smooth-0.8.72.0_pre2.ebuild b/x11-libs/smooth/smooth-0.8.72.0_pre2.ebuild
14 new file mode 100644
15 index 0000000..47f7db2
16 --- /dev/null
17 +++ b/x11-libs/smooth/smooth-0.8.72.0_pre2.ebuild
18 @@ -0,0 +1,66 @@
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 + app-arch/bzip2
39 + dev-libs/atk
40 + dev-libs/fribidi
41 + dev-libs/glib:*
42 + dev-libs/libxml2
43 + media-libs/fontconfig
44 + media-libs/freetype
45 + media-libs/libpng:*
46 + sys-devel/gcc:*[cxx]
47 + sys-libs/zlib
48 + virtual/jpeg:*
49 + virtual/libiconv
50 + x11-libs/cairo
51 + x11-libs/gdk-pixbuf
52 + x11-libs/gtk+:2
53 + x11-libs/libX11
54 + x11-libs/libXmu
55 + x11-libs/libXt
56 + x11-libs/pango
57 + "
58 +DEPEND="${RDEPEND}"
59 +
60 +DOCS=( ChangeLog ToDo.xml )
61 +
62 +S="${WORKDIR}"/${PN}-${MY_PV}
63 +
64 +src_compile() {
65 + local config=(
66 + systemlibbz2
67 + bundledlibcpuid
68 + bundledlibfribidi
69 + systemlibiconv
70 + systemlibjpeg
71 + systemlibpng
72 + systemlibxml2
73 + systemzlib
74 + )
75 +
76 + emake prefix=/usr config="${config[*]}"
77 +}
78 +
79 +src_install() {
80 + emake DESTDIR="${D}" prefix=/usr install
81 +
82 + insinto /usr/share/${PF}/
83 + doins -r doc samples tutorial
84 +}