diff options
author | Daniel Black <dragonheart@gentoo.org> | 2004-04-26 00:25:41 +0000 |
---|---|---|
committer | Daniel Black <dragonheart@gentoo.org> | 2004-04-26 00:25:41 +0000 |
commit | aae57e20ae0c3cd7d96dc001b084f7bf4c53fbdb (patch) | |
tree | c1dbeedc6679908585a5bad659e85306646d8d17 /x11-libs/gksu/gksu-1.0.5.ebuild | |
parent | added additional einfo to clarify things (I hope) (Manifest recommit) (diff) | |
download | gentoo-2-aae57e20ae0c3cd7d96dc001b084f7bf4c53fbdb.tar.gz gentoo-2-aae57e20ae0c3cd7d96dc001b084f7bf4c53fbdb.tar.bz2 gentoo-2-aae57e20ae0c3cd7d96dc001b084f7bf4c53fbdb.zip |
Inital import to support gtk-cpuspeedy. Missing dependancy noticed by Priit Laes <amd@tt.ee> in bug #48978
Diffstat (limited to 'x11-libs/gksu/gksu-1.0.5.ebuild')
-rw-r--r-- | x11-libs/gksu/gksu-1.0.5.ebuild | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/x11-libs/gksu/gksu-1.0.5.ebuild b/x11-libs/gksu/gksu-1.0.5.ebuild new file mode 100644 index 000000000000..b428c54c180f --- /dev/null +++ b/x11-libs/gksu/gksu-1.0.5.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gksu/gksu-1.0.5.ebuild,v 1.1 2004/04/26 00:25:41 dragonheart Exp $ + +DESCRIPTION="This library provides a gtk+ front end to su and sudo" + +HOMEPAGE="http://www.nongnu.org/gksu/" + +SRC_URI="http://people.debian.org/~kov/gksu/${P}.tar.gz" + +LICENSE="GPL-2" + +SLOT="0" + +KEYWORDS="~x86" + +IUSE="nls" + +DEPEND="sys-apps/gawk + sys-apps/sed + sys-apps/grep + >=x11-libs/gtk+-2 + dev-util/pkgconfig + nls? ( sys-devel/gettext ) + sys-devel/libtool + sys-devel/gcc + virtual/glibc + >=dev-util/gtk-doc-1.0 + sys-devel/m4 + sys-devel/bison" + +RDEPEND="dev-libs/atk + dev-libs/expat + dev-libs/glib + media-libs/fontconfig + media-libs/freetype + virtual/glibc + sys-libs/zlib + virtual/x11 + x11-libs/gtk+ + x11-libs/pango" + + +src_compile() { + + econf `use_enable nls` || die "Configure failed" + emake || die "emake failed" +} + +src_install() { + einstall || die +} |