diff options
author | Alastair Tse <liquidx@gentoo.org> | 2003-03-04 18:26:04 +0000 |
---|---|---|
committer | Alastair Tse <liquidx@gentoo.org> | 2003-03-04 18:26:04 +0000 |
commit | a28f1cd6cecf1bfb364023e012a4c6d65eed706f (patch) | |
tree | 683c6109425ddead2cf5a901ad09edfe9f196897 /gnome-extra | |
parent | python and alsa deps removed. bug #16810 (diff) | |
download | gentoo-2-a28f1cd6cecf1bfb364023e012a4c6d65eed706f.tar.gz gentoo-2-a28f1cd6cecf1bfb364023e012a4c6d65eed706f.tar.bz2 gentoo-2-a28f1cd6cecf1bfb364023e012a4c6d65eed706f.zip |
version bump
Diffstat (limited to 'gnome-extra')
-rw-r--r-- | gnome-extra/gal/ChangeLog | 7 | ||||
-rw-r--r-- | gnome-extra/gal/files/digest-gal-0.23 | 1 | ||||
-rw-r--r-- | gnome-extra/gal/gal-0.23.ebuild | 64 | ||||
-rw-r--r-- | gnome-extra/gtkhtml/ChangeLog | 7 | ||||
-rw-r--r-- | gnome-extra/gtkhtml/files/digest-gtkhtml-1.1.8 | 1 | ||||
-rw-r--r-- | gnome-extra/gtkhtml/gtkhtml-1.1.8.ebuild | 140 |
6 files changed, 218 insertions, 2 deletions
diff --git a/gnome-extra/gal/ChangeLog b/gnome-extra/gal/ChangeLog index 61bc9b683239..3521abdf3fbb 100644 --- a/gnome-extra/gal/ChangeLog +++ b/gnome-extra/gal/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for gnome-extra/gal # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gal/ChangeLog,v 1.18 2003/03/04 18:17:50 liquidx Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gal/ChangeLog,v 1.19 2003/03/04 18:23:05 liquidx Exp $ + +*gal-0.23 (04 Mar 2003) + + 04 Mar 2003; Alastair Tse <liquidx@gentoo.org> gal-0.23.ebuild files/digest-gal-0.23 : + version bump. deps cleaned and enabled 'doc' USE flag. resolves #16816 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords diff --git a/gnome-extra/gal/files/digest-gal-0.23 b/gnome-extra/gal/files/digest-gal-0.23 new file mode 100644 index 000000000000..cbfa7cd3f94d --- /dev/null +++ b/gnome-extra/gal/files/digest-gal-0.23 @@ -0,0 +1 @@ +MD5 7afd78f2801029a413e0e1e0abba4af2 gal-0.23.tar.bz2 1032853 diff --git a/gnome-extra/gal/gal-0.23.ebuild b/gnome-extra/gal/gal-0.23.ebuild new file mode 100644 index 000000000000..317fc4816f1c --- /dev/null +++ b/gnome-extra/gal/gal-0.23.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gal/gal-0.23.ebuild,v 1.1 2003/03/04 18:23:05 liquidx Exp $ + +IUSE="nls doc" + +inherit gnome.org libtool + +S="${WORKDIR}/${P}" +DESCRIPTION="The Gnome Application Libraries" +HOMEPAGE="http://www.gnome.org/" + +LICENSE="GPL-2 LGPL-2.1" +SLOT="0" +KEYWORDS="~x86 ~ppc ~sparc " + +RDEPEND=">=dev-libs/libxml-1.8.16 + >=gnome-base/gnome-print-0.34 + =gnome-base/libglade-0* + =x11-libs/gtk+-1.2* + <gnome-base/gnome-vfs-1.9.0 + >=dev-libs/libunicode-0.4-r1" + +DEPEND="nls? ( sys-devel/gettext ) + >=dev-util/intltool-0.11 + sys-devel/perl + doc? ( dev-util/gtk-doc ) + ${RDEPEND}" + + +src_compile() { + elibtoolize + + local myconf="" + use nls || myconf="--disable-nls" + + if [ -n "`use doc`" ]; then + myconf="${myconf} --enable-gtk-doc" + else + myconf="${myconf} --disable-gtk-doc" + fi + + ./configure --host=${CHOST} \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var/lib \ + ${myconf} || die + + make || die # Doesn't work with -j 4 (hallski) +} + +src_install() { + make prefix=${D}/usr \ + sysconfdir=${D}/etc \ + localstatedir=${D}/var/lib \ + install || die + + # Add some type of backward compat... + local fullname="`eval basename \`readlink ${D}/usr/lib/libgal.so\``" + dosym ${fullname##*/} /usr/lib/libgal.so.$((`echo ${PV} | cut -d. -f2`-1)) + + dodoc AUTHORS COPYING ChangeLog NEWS README +} + diff --git a/gnome-extra/gtkhtml/ChangeLog b/gnome-extra/gtkhtml/ChangeLog index fa6f71f9879c..6597a692f9e5 100644 --- a/gnome-extra/gtkhtml/ChangeLog +++ b/gnome-extra/gtkhtml/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for gnome-extra/gtkhtml # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gtkhtml/ChangeLog,v 1.21 2003/02/12 06:54:23 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gtkhtml/ChangeLog,v 1.22 2003/03/04 18:26:04 liquidx Exp $ + +*gtkhtml-1.1.8 (04 Mar 2003) + + 04 Mar 2003; Alastair Tse <liquidx@gentoo.org> gtkhtml-1.1.8.ebuild files/digest-gtkhtml-1.1.8 : + version bump *gtkhtml-1.1.7-r1 (22 Dec 2002) diff --git a/gnome-extra/gtkhtml/files/digest-gtkhtml-1.1.8 b/gnome-extra/gtkhtml/files/digest-gtkhtml-1.1.8 new file mode 100644 index 000000000000..79b228234901 --- /dev/null +++ b/gnome-extra/gtkhtml/files/digest-gtkhtml-1.1.8 @@ -0,0 +1 @@ +MD5 ea64ac887b834573d4ee6279926ba245 gtkhtml-1.1.8.tar.bz2 1079444 diff --git a/gnome-extra/gtkhtml/gtkhtml-1.1.8.ebuild b/gnome-extra/gtkhtml/gtkhtml-1.1.8.ebuild new file mode 100644 index 000000000000..dd5b539f3b3a --- /dev/null +++ b/gnome-extra/gtkhtml/gtkhtml-1.1.8.ebuild @@ -0,0 +1,140 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gtkhtml/gtkhtml-1.1.8.ebuild,v 1.1 2003/03/04 18:26:04 liquidx Exp $ + +IUSE="nls gnome" + +inherit gnome.org libtool + +MY_PV="`echo ${PV} | cut -d. -f1,2`" +S="${WORKDIR}/${P}" +DESCRIPTION="Lightweight HTML rendering/printing/editing engine." +HOMEPAGE="http://www.gnome.org/" + +LICENSE="GPL-2 LGPL-2.1" +# This one lets gtkhtml-1.0 compiled stuff work, but some stuff do +# not compile, so not sure as to what to set SLOT to .. it could be +# that new versions will support 1.[12] of gtkhtml ... +SLOT="0" +KEYWORDS="x86 ~ppc ~sparc" + +RDEPEND=">=gnome-extra/gal-0.21 + <gnome-base/control-center-1.99.0 + >=gnome-base/libghttp-1.0.9-r1 + >=dev-libs/libunicode-0.4-r1 + >=gnome-base/gnome-print-0.34 + >=gnome-base/bonobo-1.0.20 + nls? ( sys-devel/gettext + >=dev-util/intltool-0.11 ) + <gnome-base/libglade-0.99.0 + <gnome-base/gconf-1.1.0" +# gnome? ( <gnome-base/gconf-1.1.0 ) +# Borks without gconf in most cases + +DEPEND="${RDEPEND}" + +src_compile() { + elibtoolize + + local myconf="" + use nls || myconf="${myconf} --disable-nls" + + # Evo users need to have bonobo support + #use bonobo \ + # && myconf="${myconf} --with-bonobo" \ + # || myconf="${myconf} --without-bonobo" + + # Otherwise it will use the wrong include dir + #use gnome \ + # && myconf="${myconf} --with-gconf" \ + # || myconf="${myconf} --without-gconf" + myconf="${myconf} --with-gconf" +# Borks without gconf in most cases + + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var/lib \ + ${myconf} || die + + emake || die "Package building failed." +} + +# This function converts a pkgconfig config type file to +# a Conf.sh type file used by gnome-config. +# +# Usage: conv_pkgconfig_confsh foo.pc +# +# <azarah@gentoo.org> (9 Nov 2002) +conv_pkgconfig_confsh() { + + local pkgconfig_file="$1" + local confsh_file="${pkgconfig_file%%-*}Conf.sh" + local package_name="`echo ${pkgconfig_file%%-*} | awk '{print toupper($0)}'`" + local tmpfile="${T}/$$.env" + + [ "$#" -ne 1 ] && return 1 + [ ! -f ${D}/usr/lib/pkgconfig/${pkgconfig_file} ] && return 1 + + # Remove bogus info and convert to bash type file we can + # source ... + sed -e 's|: *|=|g' \ + -e '/^$/ d' \ + -e 's|$|"|g' \ + -e 's|=|="|g' \ + -e 's|Libs=|libs=|' \ + -e 's|Cflags=|cflags=|' \ + -e '/^Name.*/ d' \ + -e '/^Description.*/ d' \ + -e '/^Version.*/ d' \ + ${D}/usr/lib/pkgconfig/${pkgconfig_file} > ${tmpfile} + + source ${tmpfile} + + # Ok, generate our Conf.sh file + cat > ${D}/usr/lib/${confsh_file} <<CONFSHEND +# +# Configuration file for using the ${package_name} library in GNOME applications +# +${package_name}_LIBDIR="-L${libdir}" +${package_name}_LIBS="${libs}" +${package_name}_INCLUDEDIR="${cflags}" +${package_name}_DATADIR="${gtkhtml_datadir}" +MODULE_VERSION="${module_version}" + +CONFSHEND + + # Fix permissions + fperms 0755 /usr/lib/${confsh_file} +} + +src_install() { + local fullname="" + + einstall || die + + # Fix the double entry in Control Center + rm -f ${D}/usr/share/control-center/capplets/gtkhtml-properties.desktop + + # This next big gets gtkhtml-1.1 to be compadible with gtkhtml-1.0. + # We basically generate a /usr/lib/gtkhtmlConf.sh so that gnome-config + # will see gtkhtml-1.1 and other older gnome apps should then be able + # to use it. We also create libgtkhtml.so and libgtkhtml.so.20 symlinks, + # and /usr/share/gtkhtml-1.1/gtkhtml symlinks for apps compiled against + # older gtkhtml to find their libs, and data .idl files. + # + # <azarah@gentoo.org> (9 Nov 2002) + conv_pkgconfig_confsh ${PN}-${MY_PV}.pc + + # Add some type of backward compat for libs... + fullname="`eval basename \`readlink ${D}/usr/lib/lib${PN}-${MY_PV}.so\``" + dosym ${fullname##*/} /usr/lib/lib${PN}.so + dosym ${fullname##*/} /usr/lib/lib${PN}.so.20 + + # For older apps to be able to find the data... + dosym '.' /usr/share/${PN}-${MY_PV}/${PN} + + dodoc AUTHORS COPYING* ChangeLog README NEWS TODO +} + |