summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernard Cafarelli <voyageur@gentoo.org>2008-01-03 12:34:09 +0000
committerBernard Cafarelli <voyageur@gentoo.org>2008-01-03 12:34:09 +0000
commit9e0205110b30906408271218261419483b3e89b1 (patch)
treeb91703b50d08adebe75057f76ed0f97f0cb61be4 /gnustep-base
parentStable version bump (diff)
downloadgentoo-2-9e0205110b30906408271218261419483b3e89b1.tar.gz
gentoo-2-9e0205110b30906408271218261419483b3e89b1.tar.bz2
gentoo-2-9e0205110b30906408271218261419483b3e89b1.zip
Stable version bump
(Portage version: 2.1.4_rc14)
Diffstat (limited to 'gnustep-base')
-rw-r--r--gnustep-base/gnustep-back-xlib/ChangeLog10
-rw-r--r--gnustep-base/gnustep-back-xlib/files/digest-gnustep-back-xlib-0.12.13
-rw-r--r--gnustep-base/gnustep-back-xlib/gnustep-back-xlib-0.12.1.ebuild47
3 files changed, 58 insertions, 2 deletions
diff --git a/gnustep-base/gnustep-back-xlib/ChangeLog b/gnustep-base/gnustep-back-xlib/ChangeLog
index 7cf512918f53..5c9fbb8263ee 100644
--- a/gnustep-base/gnustep-back-xlib/ChangeLog
+++ b/gnustep-base/gnustep-back-xlib/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for gnustep-base/gnustep-back-xlib
-# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-back-xlib/ChangeLog,v 1.33 2007/12/08 20:02:46 voyageur Exp $
+# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-back-xlib/ChangeLog,v 1.34 2008/01/03 12:34:08 voyageur Exp $
+
+*gnustep-back-xlib-0.12.1 (03 Jan 2008)
+
+ 03 Jan 2008; Bernard Cafarelli <voyageur@gentoo.org>
+ +gnustep-back-xlib-0.12.1.ebuild:
+ Stable version bump
08 Dec 2007; Bernard Cafarelli <voyageur@gentoo.org>
-files/font-make-fix.patch-0.10.3, -files/config-gnustep-back-xlib.sh,
diff --git a/gnustep-base/gnustep-back-xlib/files/digest-gnustep-back-xlib-0.12.1 b/gnustep-base/gnustep-back-xlib/files/digest-gnustep-back-xlib-0.12.1
new file mode 100644
index 000000000000..9e5f5575eaaf
--- /dev/null
+++ b/gnustep-base/gnustep-back-xlib/files/digest-gnustep-back-xlib-0.12.1
@@ -0,0 +1,3 @@
+MD5 8171f472609f72ec58bdfe7f12ca52d3 gnustep-back-0.12.1.tar.gz 861961
+RMD160 7970dfeebd12facb52aa6ba4dd2f06406dbdae74 gnustep-back-0.12.1.tar.gz 861961
+SHA256 c7eb3e0ee3f6b1224aacdcd8052f99d3ec58c94c8f21c6b4b888a2bb5bc97611 gnustep-back-0.12.1.tar.gz 861961
diff --git a/gnustep-base/gnustep-back-xlib/gnustep-back-xlib-0.12.1.ebuild b/gnustep-base/gnustep-back-xlib/gnustep-back-xlib-0.12.1.ebuild
new file mode 100644
index 000000000000..36fe07b278fc
--- /dev/null
+++ b/gnustep-base/gnustep-back-xlib/gnustep-back-xlib-0.12.1.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-back-xlib/gnustep-back-xlib-0.12.1.ebuild,v 1.1 2008/01/03 12:34:08 voyageur Exp $
+
+inherit gnustep-base
+
+S=${WORKDIR}/gnustep-back-${PV}
+
+DESCRIPTION="Default X11 back-end component for the GNUstep GUI Library"
+
+HOMEPAGE="http://www.gnustep.org"
+SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-back-${PV}.tar.gz"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-fbsd"
+SLOT="0"
+LICENSE="LGPL-2.1"
+
+IUSE="opengl xim"
+DEPEND="${GNUSTEP_CORE_DEPEND}
+ ~gnustep-base/gnustep-gui-${PV}
+ opengl? ( virtual/opengl virtual/glu )
+ x11-libs/libICE
+ x11-libs/libSM
+ x11-libs/libX11
+ x11-libs/libXext
+ x11-libs/libXi
+ x11-libs/libXmu
+ x11-libs/libXt
+ x11-libs/libXft
+ x11-libs/libXrender
+ dev-libs/expat
+ media-libs/fontconfig
+ >=media-libs/freetype-2.1.9
+ !gnustep-base/gnustep-back-art
+ !gnustep-base/gnustep-back-cairo"
+RDEPEND="${DEPEND}"
+
+src_compile() {
+ egnustep_env
+
+ use opengl && myconf="--enable-glx"
+ myconf="$myconf `use_enable xim`"
+ myconf="$myconf --enable-server=x11"
+ myconf="$myconf --enable-graphics=xlib"
+ econf $myconf || die "configure failed"
+
+ egnustep_make
+}