From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 4.0.0 (2022-12-14) on finch.gentoo.org X-Spam-Level: * X-Spam-Status: No, score=2.0 required=5.0 tests=DATE_IN_PAST_24_48, DKIM_ADSP_NXDOMAIN,DMARC_NONE,INVALID_DATE,MAILING_LIST_MULTI, RDNS_DYNAMIC autolearn=no autolearn_force=no version=4.0.0 Received: from 100.209-115-231-0.interbaun.com ([209.115.231.100] helo=taipan.mudshark.org) by cvs.gentoo.org with esmtp (Exim 3.30 #1) id 15SVSM-0003go-00 for gentoo-dev@cvs.gentoo.org; Thu, 02 Aug 2001 21:16:58 -0600 Received: from dante.taipan.mudshark.org (dante.taipan.mudshark.org [192.168.1.2]) by taipan.mudshark.org (Postfix) with ESMTP id 74CBD4F22 for ; Thu, 2 Aug 2001 21:16:03 -0600 (MDT) Received: by dante.taipan.mudshark.org (Postfix, from userid 1000) id 65E6033A91; Thu, 2 Aug 2001 21:28:19 -0600 (MDT) From: Craig Joly To: Gentoo Developers Message-ID: <20010802212819.A20040@dante.taipan.mudshark.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="jRHKVT23PllUwdXP" Content-Disposition: inline User-Agent: Mutt/1.2.5i Subject: [gentoo-dev] gnome/gtk app ebuilds Sender: gentoo-dev-admin@cvs.gentoo.org Errors-To: gentoo-dev-admin@cvs.gentoo.org X-BeenThere: gentoo-dev@cvs.gentoo.org X-Mailman-Version: 2.0 Precedence: bulk Reply-To: gentoo-dev@cvs.gentoo.org List-Help: List-Post: List-Subscribe: , List-Id: Gentoo Linux development list List-Unsubscribe: , List-Archive: Date: Thu Aug 2 21:17:02 2001 X-Original-Date: Thu, 2 Aug 2001 21:28:19 -0600 X-Archives-Salt: 74c8450b-c6bb-427e-8bad-c95a0075eb8c X-Archives-Hash: 0c6622329bae29ee137cef2d42a58723 --jRHKVT23PllUwdXP Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Four new ebuilds: SCREEM - a GNOME Site Creation and Editing EnvironMent ithought - a web enabled outliner / diary using gtk+ gaby - GNOME or gtk+ personal database feh - everybody's favorite (well mine anyway) image viewer, and it's not gtk or gnome, just imlib2 ithought has a strange numbering scheme. It's actually ithought-a5. I called the ebuild ithought-0.0.5.ebuild. The gaby ebuild is bothering me a bit. The problem - it compiles. The default configure script is looking for pygtk.h somewhere other than the python.gnome ebuild puts it (/usr/include/pygtk/). I modified ./configure so that it finds it, but I expected a Makefile to break when it didn't have -I/usr/include in it. Nothing broke as far as I can tell. So, if anyone notices strange behavior with gaby, let me know. Craig --jRHKVT23PllUwdXP Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="gaby-2.0.2.ebuild" # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Craig Joly # $Header$ S=${WORKDIR}/${P} DESCRIPTION="A small personal databases manager for Linux" SRC_URI="http://gaby.sourceforge.net/archives/${P}.tar.gz" HOMEPAGE="http://gaby.sourceforge.net" DEPEND=">=x11-libs/gtk+-1.2.8 virtual/python >=gnome-base/gdk-pixbuf-0.7.0 gnome-base/libxml dev-python/gnome-python gnome-base/libglade gnome? ( >=gnome-base/gnome-libs-1.2.8 ) esd? ( >=media-sound/esound-0.2.8 ) nls? ( sys-devel/gettext )" # Image fields require ( >= (media-libs/imlib-1.9.3 || # gnome-base/gdk-pixbuf-0.7.0 )) # Sound fields require ( >=media-sound/esound-0.2.8 ) # form layout requires ( gnome-base/libglade ) src_compile() { local myopts if [ "`use gnome`" ] then myopts="--enable-gnome --prefix=/opt/gnome" else myopts="--disable-gnome --prefix=/usr/X11R6" fi if [ -z "`use nls`" ] then myopts="$myopts --disable-nls" fi cp configure configure.orig sed -e "7293 c\ if test -f /usr/include/pygtk/pygtk.h; then" < configure.orig > configure try ./configure --host=${CHOST} ${myopts} try emake } src_install () { try make DESTDIR=${D} install dodoc ABOUT-NLS AUTHORS BUGS COPYING ChangeLog INSTALL NEWS dodoc README TODO TODO.more } --jRHKVT23PllUwdXP Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="screem-0.4.1.ebuild" # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Craig Joly S=${WORKDIR}/${P} DESCRIPTION="SCREEM (Site CReating and Editing EnvironmenMent) is an integrated environment of the creation and maintenance of websites and pages" SRC_URI="http://ftp1.sourceforge.net/screem/${P}.tar.gz" HOMEPAGE="http://www.screem.org" DEPEND=">=gnome-base/gnome-libs-1.2.0 >=gnome-base/libxml-1.8.7 >=gnome-base/libglade-0.12 >=gnome-base/gdk-pixbuf-0.7" src_compile() { try ./configure --prefix=/opt/gnome --host=${CHOST} try emake } src_install () { try make DESTDIR=${D} install dodoc docs AUTHORS ChangeLog NEWS README COPYING TODO FAQ BUGS DEPENDS } --jRHKVT23PllUwdXP Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="ithought-0.0.5.ebuild" # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Craig Joly # $Header$ #emerge doesn't yet support things like a5 P=ithought-a5 S=${WORKDIR}/${P} DESCRIPTION="An internet-aware personal thought manager" SRC_URI="http://download.sourceforge.net/ithought/ithought-a5.tar.gz" HOMEPAGE="http://ithought.sourceforge.net" DEPEND=">=x11-libs/gtk+-1.2 gnome-libs/libxml2" src_compile() { try ./configure --host=${CHOST} try emake } src_install () { try make DESTDIR=${D} install dodoc docs AUTHORS COPYING ChangeLog INSTALL NEWS README TODO } --jRHKVT23PllUwdXP Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="feh-0.9.9.ebuild" # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Craig Joly # $Header$ S=${WORKDIR}/${P} DESCRIPTION="A fast, lightweight imageviewer using imlib2" SRC_URI="http://www.linuxbrit.co.uk/feh/" HOMEPAGE="http://www.linuxbrit.co.uk/downloads/feh-0.9.9.tar.gz" DEPEND="media-libs/imlib2" src_compile() { try ./configure --host=${CHOST} try emake } src_install () { try make DESTDIR=${D} install dodoc AUTHORS COPYING ChangeLog README TODO } --jRHKVT23PllUwdXP--