Files
@ f6c066eb71a4
Branch filter:
Location: ohnobinki_overlay/dev-dotnet/gtk-sharp/gtk-sharp-1.0.10.ebuild - annotation
f6c066eb71a4
1.5 KiB
application/vnd.gentoo.ebuild
net-irc/unrealircd: new unrealircd-system-tre.patch that adds --with-system-tre
This patch is much more friendly than the first one which just brute-forcedly disabled compiling with internal tre. This hopefully will be accepted by unrealircd.
This patch is much more friendly than the first one which just brute-forcedly disabled compiling with internal tre. This hopefully will be accepted by unrealircd.
5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 | # Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/gtk-sharp/gtk-sharp-1.0.10.ebuild,v 1.9 2008/01/13 04:19:53 compnerd Exp $
WANT_AUTOMAKE="1.9"
WANT_AUTOCONF="latest"
inherit eutils mono autotools
DESCRIPTION="Gtk# is a C# language binding for the GTK2 toolkit and GNOME libraries"
SRC_URI="http://www.go-mono.com/sources/${PN}/${P}.tar.gz
mirror://gentoo/${P}-configurable.diff.gz"
HOMEPAGE="http://gtk-sharp.sourceforge.net/"
LICENSE="LGPL-2.1"
SLOT="1"
IUSE=""
RESTRICT="test"
RDEPEND=">=dev-lang/mono-1.0
dev-perl/XML-LibXML
>=x11-libs/gtk+-2.2
>=gnome-base/orbit-2.8.3"
DEPEND="${RDEPEND}
>=sys-apps/sed-4.0
sys-devel/automake
sys-devel/autoconf
dev-util/pkgconfig"
KEYWORDS="amd64 ppc x86"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${WORKDIR}/${P}-configurable.diff"
sed -i -e 's:\<PKG_PATH\>:GTK_SHARP_PKG_PATH:g' configure.in
# Use correct libdir in pkgconfig file
sed -i -e 's:^libdir.*:libdir=@libdir@:' \
"${S}/gtk-sharp.pc.in" || die
eautoreconf
# disable building of samples (#16015)
sed -i -e "s:sample::" Makefile.in
}
src_compile() {
local myconf
for package in art glade gnome gnomedb gda gtkhtml rsvg vte
do
myconf="${myconf} --disable-${package}"
done
econf ${myconf} || die "./configure failed"
LANG=C emake -j1 || die
}
src_install () {
LANG=C make GACUTIL_FLAGS="/root ${D}/usr/$(get_libdir) /gacdir /usr/$(get_libdir) /package ${PN}" \
DESTDIR="${D}" install || die
dodoc README* ChangeLog
}
|