diff options
author | Gabriele Giorgetti <stroke@gentoo.org> | 2002-06-03 23:34:09 +0000 |
---|---|---|
committer | Gabriele Giorgetti <stroke@gentoo.org> | 2002-06-03 23:34:09 +0000 |
commit | 6380831fad1a213052d3cd7352533f9b39e78973 (patch) | |
tree | 4cab6490f8a3dd8d19fb1e3b23e8a91e6456a54a /x11-libs/libwnck | |
parent | Fixes #2389. (diff) | |
download | gentoo-2-6380831fad1a213052d3cd7352533f9b39e78973.tar.gz gentoo-2-6380831fad1a213052d3cd7352533f9b39e78973.tar.bz2 gentoo-2-6380831fad1a213052d3cd7352533f9b39e78973.zip |
new version of libwnck added.
Diffstat (limited to 'x11-libs/libwnck')
-rw-r--r-- | x11-libs/libwnck/ChangeLog | 6 | ||||
-rw-r--r-- | x11-libs/libwnck/files/digest-libwnck-0.13 | 1 | ||||
-rw-r--r-- | x11-libs/libwnck/libwnck-0.13.ebuild | 52 |
3 files changed, 58 insertions, 1 deletions
diff --git a/x11-libs/libwnck/ChangeLog b/x11-libs/libwnck/ChangeLog index 2c41f8681338..4a6e7a6efe46 100644 --- a/x11-libs/libwnck/ChangeLog +++ b/x11-libs/libwnck/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-libs/libwnck # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libwnck/ChangeLog,v 1.1 2002/05/22 18:58:37 spider Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libwnck/ChangeLog,v 1.2 2002/06/03 23:34:09 stroke Exp $ + +*libwnck-0.13 (4 June 2002) + 4 June 2002; Gabriele Giorgetti <stroke@gentoo.org> libwnck-0.13.ebuild: + New version *libwnck-0.12 (22 May 2002) 22 May 2002; Spider <spider@gentoo.org> libwnck-0.12.ebuild ChangeLog: diff --git a/x11-libs/libwnck/files/digest-libwnck-0.13 b/x11-libs/libwnck/files/digest-libwnck-0.13 new file mode 100644 index 000000000000..adf66945b481 --- /dev/null +++ b/x11-libs/libwnck/files/digest-libwnck-0.13 @@ -0,0 +1 @@ +MD5 268216c3be599720a6056c8bd99aba21 libwnck-0.13.tar.bz2 215037 diff --git a/x11-libs/libwnck/libwnck-0.13.ebuild b/x11-libs/libwnck/libwnck-0.13.ebuild new file mode 100644 index 000000000000..42ea6729d0d4 --- /dev/null +++ b/x11-libs/libwnck/libwnck-0.13.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libwnck/libwnck-0.13.ebuild,v 1.1 2002/06/03 23:34:09 stroke Exp $ + +# Do _NOT_ strip symbols in the build! Need both lines for Portage 1.8.9+ +DEBUG="yes" +RESTRICT="nostrip" +# force debug information +CFLAGS="${CFLAGS} -g" +CXXFLAGS="${CXXFLAGS} -g" + + +S=${WORKDIR}/${P} +DESCRIPTION="A window navigation construction kit" +SRC_URI="ftp://ftp.gnome.org/pub/GNOME/pre-gnome2/sources/${PN}/${P}.tar.bz2" +HOMEPAGE="http://www.gnome.org/" +SLOT="0" + +RDEPEND="virtual/glibc + x11-libs/pango + dev-libs/glib + >=x11-libs/gtk+-2.0.2" +DEPEND=">=dev-util/pkgconfig-0.12.0 ${RDEPEND}" + + +LICENSE="GPL-2" +src_compile() { + local myconf + + ./configure --host=${CHOST} \ + --prefix=/usr \ + --sysconfdir=/etc \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + --enable-debug=yes || die + emake || die +} + +src_install() { + make prefix=${D}/usr \ + sysconfdir=${D}/etc \ + infodir=${D}/usr/share/info \ + mandir=${D}/usr/share/man \ + install || die + + dodoc ABOUT-NLS AUTHORS COPYING ChangeLog INSTALL NEWS README +} + + + + + |