diff options
author | 2002-07-14 19:46:43 +0000 | |
---|---|---|
committer | 2002-07-14 19:46:43 +0000 | |
commit | 644e53ca038356edb4813d43c668ff709178c69b (patch) | |
tree | 7a404d4c4621956c9451ab724b71896668abc54c /app-admin | |
parent | Repoman fix: Missing DESCRIPTION tag (diff) | |
download | gentoo-2-644e53ca038356edb4813d43c668ff709178c69b.tar.gz gentoo-2-644e53ca038356edb4813d43c668ff709178c69b.tar.bz2 gentoo-2-644e53ca038356edb4813d43c668ff709178c69b.zip |
initial version contributed by erikg@wired-networks.net (Erik Grinaker)
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/xsu/ChangeLog | 11 | ||||
-rw-r--r-- | app-admin/xsu/files/digest-xsu-0.2.3 | 1 | ||||
-rw-r--r-- | app-admin/xsu/xsu-0.2.3.ebuild | 32 |
3 files changed, 44 insertions, 0 deletions
diff --git a/app-admin/xsu/ChangeLog b/app-admin/xsu/ChangeLog new file mode 100644 index 000000000000..41a979d87957 --- /dev/null +++ b/app-admin/xsu/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for app-admin/xsu +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/app-admin/xsu/ChangeLog,v 1.1 2002/07/14 19:46:43 blocke Exp $ + +*xsu-0.2.3 (14 Jul 2002) + + 14 Jul 2002; Bruce A. Locke <blocke@shivan.org> xsu-0.2.3.ebuild files/digest-xsu-0.2.3: + + Initial ebuild contributed by erikg@wired-networks.net (Erik Grinaker) and + modernized before being checked in. + diff --git a/app-admin/xsu/files/digest-xsu-0.2.3 b/app-admin/xsu/files/digest-xsu-0.2.3 new file mode 100644 index 000000000000..7a0887cb65ff --- /dev/null +++ b/app-admin/xsu/files/digest-xsu-0.2.3 @@ -0,0 +1 @@ +MD5 05f0b370368af99469c868aa865dd352 xsu-0.2.3.tar.gz 100957 diff --git a/app-admin/xsu/xsu-0.2.3.ebuild b/app-admin/xsu/xsu-0.2.3.ebuild new file mode 100644 index 000000000000..f02b788f046c --- /dev/null +++ b/app-admin/xsu/xsu-0.2.3.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/xsu/xsu-0.2.3.ebuild,v 1.1 2002/07/14 19:46:43 blocke Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Interface for 'su - username -c command' in GNOME." +SRC_URI="http://xsu.freax.eu.org/files/${P}.tar.gz" +HOMEPAGE="http://xsu.freax.eu.org" +SLOT="0" +KEYWORDS="*" +DEPEND="=gnome-base/gnome-libs-1.4* + =x11-libs/gtk+-1.2* + =dev-libs/glib-1.2*" + +src_compile() { + + # xsu uses its own custom configure script with unflexible Makefiles + ./configure --prefix=/usr -man-base=/usr/share/man --doc-path=/usr/share/doc || die + + make CC="gcc ${CFLAGS}" || die + +} + +src_install() { + dobin bin/xsu + doman doc/man/xsu.8 + dodoc AUTHORS CHANGELOG COPYING INSTALL README + dohtml doc/html/xsu_doc.html doc/html/xsu_example.jpg \ + doc/html/xsu_example2.png doc/html/xsu_example3.png \ + doc/html/xsu_in_gmenu.jpg +} + |