commit: 1471f0456154291e4394dfa31cc2edc5ba9d7641
Author: Sebastian Pipping <sebastian <AT> pipping <DOT> org>
AuthorDate: Sat Jan 2 22:25:59 2016 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Sat Jan 2 23:27:05 2016 +0000
URL: https://gitweb.gentoo.org/proj/betagarden.git/commit/?id=1471f045
x11-libs/smooth: 0.8.72.0_pre2
x11-libs/smooth/smooth-0.8.72.0_pre2.ebuild | 66 +++++++++++++++++++++++++++++
1 file changed, 66 insertions(+)
diff --git a/x11-libs/smooth/smooth-0.8.72.0_pre2.ebuild
b/x11-libs/smooth/smooth-0.8.72.0_pre2.ebuild
new file mode 100644
index 0000000..47f7db2
--- /dev/null
+++ b/x11-libs/smooth/smooth-0.8.72.0_pre2.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit eutils
+
+MY_PV=${PV/_/-}
+DESCRIPTION="smooth Class Library"
+HOMEPAGE="http://www.smooth-project.org/"
+SRC_URI="https://freac.org/preview/${PN}-${MY_PV}.tar.gz"
+
+LICENSE="Artistic-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+ app-arch/bzip2
+ dev-libs/atk
+ dev-libs/fribidi
+ dev-libs/glib:*
+ dev-libs/libxml2
+ media-libs/fontconfig
+ media-libs/freetype
+ media-libs/libpng:*
+ sys-devel/gcc:*[cxx]
+ sys-libs/zlib
+ virtual/jpeg:*
+ virtual/libiconv
+ x11-libs/cairo
+ x11-libs/gdk-pixbuf
+ x11-libs/gtk+:2
+ x11-libs/libX11
+ x11-libs/libXmu
+ x11-libs/libXt
+ x11-libs/pango
+ "
+DEPEND="${RDEPEND}"
+
+DOCS=( ChangeLog ToDo.xml )
+
+S="${WORKDIR}"/${PN}-${MY_PV}
+
+src_compile() {
+ local config=(
+ systemlibbz2
+ bundledlibcpuid
+ bundledlibfribidi
+ systemlibiconv
+ systemlibjpeg
+ systemlibpng
+ systemlibxml2
+ systemzlib
+ )
+
+ emake prefix=/usr config="${config[*]}"
+}
+
+src_install() {
+ emake DESTDIR="${D}" prefix=/usr install
+
+ insinto /usr/share/${PF}/
+ doins -r doc samples tutorial
+}