blob: b826d1f2f3e6d8d90e4aaeefb16b551a1525984b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/glademm/glademm-2.0.0.ebuild,v 1.5 2003/11/12 22:01:39 lu_zero Exp $
inherit gnome2
IUSE=""
S=${WORKDIR}/${P}
DESCRIPTION="A C++ code generating backend for glade"
SRC_URI="http://home.wtal.de/petig/Gtk/${P}.tar.gz"
HOMEPAGE="http://home.wtal.de/petig/Gtk/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~sparc ~ppc"
DEPEND="virtual/glibc"
DOCS="AUTHORS BUGS COPYING ChangeLog NEWS README TODO docs/*"
src_unpack() {
unpack ${A}
# Patch that fixes a missing <cassert> include in the source
# Closes Bug #29654
epatch ${FILESDIR}/${P}-gcc33-missing-includes-fix.patch
}
pkg_postinst() {
einfo "glademm generated sources have dependencies on packages not required by this ebuild."
}
|