diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-05-31 19:21:33 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-05-31 19:21:33 +0000 |
commit | 0ee359b3d62b00ca21b00061176e573f5fef923d (patch) | |
tree | b93454f8db20b21134466c2544fcf7c6a712f407 /app-admin/xsu | |
parent | dont install stupid COPYING file (diff) | |
download | gentoo-2-0ee359b3d62b00ca21b00061176e573f5fef923d.tar.gz gentoo-2-0ee359b3d62b00ca21b00061176e573f5fef923d.tar.bz2 gentoo-2-0ee359b3d62b00ca21b00061176e573f5fef923d.zip |
dont install stupid COPYING files among other things
Diffstat (limited to 'app-admin/xsu')
-rw-r--r-- | app-admin/xsu/xsu-0.2.3.ebuild | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/app-admin/xsu/xsu-0.2.3.ebuild b/app-admin/xsu/xsu-0.2.3.ebuild index d6746de84966..a36b49567f8f 100644 --- a/app-admin/xsu/xsu-0.2.3.ebuild +++ b/app-admin/xsu/xsu-0.2.3.ebuild @@ -1,36 +1,33 @@ # Copyright 1999-2004 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.10 2004/04/14 07:27:00 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/xsu/xsu-0.2.3.ebuild,v 1.11 2004/05/31 19:21:33 vapier Exp $ DESCRIPTION="Interface for 'su - username -c command' in GNOME." +HOMEPAGE="http://xsu.freax.eu.org/" SRC_URI="http://xsu.freax.eu.org/files/${P}.tar.gz" -HOMEPAGE="http://xsu.freax.eu.org" -SLOT="0" LICENSE="GPL-2" +SLOT="0" KEYWORDS="x86 ppc sparc" +IUSE="" DEPEND="=gnome-base/gnome-libs-1.4* =x11-libs/gtk+-1.2* =dev-libs/glib-1.2*" - RDEPEND="" 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 + dobin bin/xsu || die doman doc/man/xsu.8 - dodoc AUTHORS CHANGELOG COPYING INSTALL README + dodoc AUTHORS CHANGELOG INSTALL README dohtml -r doc } |