diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-07-25 13:48:39 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-07-25 13:48:39 +0000 |
commit | 560e9c9d3c373d57d3649dceb60ecfb92f074980 (patch) | |
tree | fcf11bad444b57b2ff51ce5b39142ae0bba9ea05 /app-admin/xsu | |
parent | fix badmask (diff) | |
download | gentoo-2-560e9c9d3c373d57d3649dceb60ecfb92f074980.tar.gz gentoo-2-560e9c9d3c373d57d3649dceb60ecfb92f074980.tar.bz2 gentoo-2-560e9c9d3c373d57d3649dceb60ecfb92f074980.zip |
repoman'd
Diffstat (limited to 'app-admin/xsu')
-rw-r--r-- | app-admin/xsu/xsu-0.2.3.ebuild | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/app-admin/xsu/xsu-0.2.3.ebuild b/app-admin/xsu/xsu-0.2.3.ebuild index 5abe333b4bc8..b3d86de78ec1 100644 --- a/app-admin/xsu/xsu-0.2.3.ebuild +++ b/app-admin/xsu/xsu-0.2.3.ebuild @@ -1,22 +1,27 @@ # 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.2 2002/07/17 20:43:18 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/xsu/xsu-0.2.3.ebuild,v 1.3 2002/07/25 13:48:39 seemant Exp $ S=${WORKDIR}/${P} DESCRIPTION="Interface for 'su - username -c command' in GNOME." SRC_URI="http://xsu.freax.eu.org/files/${P}.tar.gz" -SLOT="0" HOMEPAGE="http://xsu.freax.eu.org" + SLOT="0" -KEYWORDS="*" +LICENSE="GPL-2" +KEYWORDS="x86" + DEPEND="=gnome-base/gnome-libs-1.4* - =x11-libs/gtk+-1.2* - =dev-libs/glib-1.2*" + =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 + ./configure \ + --prefix=/usr \ + --man-base=/usr/share/man \ + --doc-path=/usr/share/doc || die make CC="gcc ${CFLAGS}" || die @@ -26,8 +31,5 @@ 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 + dohtml -r doc } - |