diff options
author | Ian Leitch <port001@gentoo.org> | 2003-12-16 04:21:56 +0000 |
---|---|---|
committer | Ian Leitch <port001@gentoo.org> | 2003-12-16 04:21:56 +0000 |
commit | f7f03ccdea4a31abdf1089a9ce37531d502f50af (patch) | |
tree | 956e1c4b9db3a2bb30aa0c1eef19589ea5e71c83 /x11-misc/xscreensaver-app/xscreensaver-app-2.3.ebuild | |
parent | Initial commit, original ebuild by Jeff Stuart <jstuart@computer-city.net> bu... (diff) | |
download | historical-f7f03ccdea4a31abdf1089a9ce37531d502f50af.tar.gz historical-f7f03ccdea4a31abdf1089a9ce37531d502f50af.tar.bz2 historical-f7f03ccdea4a31abdf1089a9ce37531d502f50af.zip |
Initial commit, original ebuild by Jeff Stuart <jstuart@computer-city.net> bumped and improved. #21281
Diffstat (limited to 'x11-misc/xscreensaver-app/xscreensaver-app-2.3.ebuild')
-rw-r--r-- | x11-misc/xscreensaver-app/xscreensaver-app-2.3.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/x11-misc/xscreensaver-app/xscreensaver-app-2.3.ebuild b/x11-misc/xscreensaver-app/xscreensaver-app-2.3.ebuild new file mode 100644 index 000000000000..72819a7a3fef --- /dev/null +++ b/x11-misc/xscreensaver-app/xscreensaver-app-2.3.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xscreensaver-app/xscreensaver-app-2.3.ebuild,v 1.1 2003/12/16 04:21:47 port001 Exp $ + +IUSE="" + +MY_PN=${PN/-a/.A} +MY_PN=${MY_PN/xs/XS} +MY_PN=${MY_PN/s/S} +S="${WORKDIR}/${MY_PN}-${PV}" + +DESCRIPTION="XScreenSaver dockapp for the Window Maker window manager." +SRC_URI=" http://www.asleep.net/download/${MY_PN}-${PV}.tar.gz" +HOMEPAGE="http://www.asleep.net/hacking/XScreenSaver.App/" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86" + +DEPEND="virtual/x11 + x11-libs/libdockapp" + +RDEPEND="x11-misc/xscreensaver" + +src_compile() { + econf || die "Configuration failed" + emake || die "Make Failed" +} + +src_install () { + einstall || die "Install failed" + dodoc README INSTALL COPYING NEWS ChangeLog TODO AUTHORS +} |