diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-11-10 11:02:07 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-11-10 11:02:07 +0000 |
commit | 793852d48c5593e7136d2cfc5750e5156411a663 (patch) | |
tree | e10a3892e7a3e365ced5efdc25a49235ba937fda /x11-misc | |
parent | fix to filter -funroll-loops out (diff) | |
download | historical-793852d48c5593e7136d2cfc5750e5156411a663.tar.gz historical-793852d48c5593e7136d2cfc5750e5156411a663.tar.bz2 historical-793852d48c5593e7136d2cfc5750e5156411a663.zip |
removed older ebuilds
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/xscreensaver/files/digest-xscreensaver-4.05-r2 | 1 | ||||
-rw-r--r-- | x11-misc/xscreensaver/files/digest-xscreensaver-4.06 | 1 | ||||
-rw-r--r-- | x11-misc/xscreensaver/files/digest-xscreensaver-4.06-r1 | 1 | ||||
-rw-r--r-- | x11-misc/xscreensaver/xscreensaver-4.05-r2.ebuild | 102 | ||||
-rw-r--r-- | x11-misc/xscreensaver/xscreensaver-4.06-r1.ebuild | 116 | ||||
-rw-r--r-- | x11-misc/xscreensaver/xscreensaver-4.06.ebuild | 115 |
6 files changed, 0 insertions, 336 deletions
diff --git a/x11-misc/xscreensaver/files/digest-xscreensaver-4.05-r2 b/x11-misc/xscreensaver/files/digest-xscreensaver-4.05-r2 deleted file mode 100644 index abb2ba26d7b8..000000000000 --- a/x11-misc/xscreensaver/files/digest-xscreensaver-4.05-r2 +++ /dev/null @@ -1 +0,0 @@ -MD5 39b05d4da14158638e501e3bc31c0943 xscreensaver-4.05.tar.gz 2914308 diff --git a/x11-misc/xscreensaver/files/digest-xscreensaver-4.06 b/x11-misc/xscreensaver/files/digest-xscreensaver-4.06 deleted file mode 100644 index 965794b29b81..000000000000 --- a/x11-misc/xscreensaver/files/digest-xscreensaver-4.06 +++ /dev/null @@ -1 +0,0 @@ -MD5 acf78cc3ce7c8145dea79e9aa610c86d xscreensaver-4.06.tar.gz 3209164 diff --git a/x11-misc/xscreensaver/files/digest-xscreensaver-4.06-r1 b/x11-misc/xscreensaver/files/digest-xscreensaver-4.06-r1 deleted file mode 100644 index 965794b29b81..000000000000 --- a/x11-misc/xscreensaver/files/digest-xscreensaver-4.06-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 acf78cc3ce7c8145dea79e9aa610c86d xscreensaver-4.06.tar.gz 3209164 diff --git a/x11-misc/xscreensaver/xscreensaver-4.05-r2.ebuild b/x11-misc/xscreensaver/xscreensaver-4.05-r2.ebuild deleted file mode 100644 index f8446f9ae1fc..000000000000 --- a/x11-misc/xscreensaver/xscreensaver-4.05-r2.ebuild +++ /dev/null @@ -1,102 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xscreensaver/xscreensaver-4.05-r2.ebuild,v 1.7 2002/10/05 05:39:27 drobbins Exp $ - -IUSE="nls motif gnome opengl gtk pam" - -S="${WORKDIR}/${P/.2/}" -DESCRIPTION="a modular screensaver for X11" -SRC_URI="http://www.jwz.org/xscreensaver/${P}.tar.gz" -HOMEPAGE="http://www.jwz.org/xscreensaver/" -LICENSE="BSD" -KEYWORDS="x86 sparc sparc64" -SLOT="0" - -DEPEND="virtual/x11 sys-devel/bc - gtk? ( x11-libs/gtk+ ) - motif? ( >=x11-libs/openmotif-2.1.30 ) - opengl? ( virtual/opengl >=media-libs/gle-3.0.1 ) - gnome? ( media-libs/gdk-pixbuf - >=gnome-base/control-center-1.4.0.1-r1 ) - pam? ( >=sys-libs/pam-0.75 ) - dev-libs/libxml2" - -src_unpack() { - - unpack ${A} - cd ${S} - - use nls && ( \ - cd po - patch -p0 < ${FILESDIR}/${P}-gentoo.diff - ) || ( \ - cp Makefile.in Makefile.in.orig - sed "s:hacks/glx po:hacks/glx:" \ - Makefile.in.orig > Makefile.in - ) -} - -src_compile() { - local myconf="" - use gnome \ - && myconf="${myconf} --with-gnome" \ - || myconf="${myconf} --without-gnome" - - use gtk \ - && myconf="${myconf} --with-gtk" \ - || myconf="${myconf} --without-gtk" - - use motif \ - && myconf="${myconf} --with-motif" \ - || myconf="${myconf} --without-motif" - - use pam \ - && myconf="${myconf} --with-pam" \ - || myconf="${myconf} --without-pam" - - use opengl \ - && myconf="${myconf} --with-gl --with-gle" \ - || myconf="${myconf} --without-gl --without-gle" - - export C_INCLUDE_PATH="/usr/include/libxml2/libxml/" - ./configure --prefix=/usr \ - --mandir=/usr/share/man \ - --host="${CHOST}" \ - --enable-hackdir=/usr/lib/xscreensaver \ - --with-mit-ext \ - --with-dpms-ext \ - --with-xinerama-ext \ - --with-xf86vmode-ext \ - --with-xf86gamma-ext \ - --with-proc-interrupts \ - --with-xpm \ - --with-xshm-ext \ - --with-xdbe-ext \ - --enable-locking \ - ${myconf} || die - - emake || die -} - -src_install() { - - [ -n "$KDEDIR" ] && dodir "$KDEDIR/bin" - - make install_prefix="${D}" install || die - # install correctly in gnome2 - use gnome && ( \ - dodir /usr/share/gnome/capplets - insinto /usr/share/gnome/capplets - doins "driver/screensaver-properties.desktop" - ) - - use gnome && ( \ - insinto /usr/share/pixmaps - newins ${S}/utils/images/logo-50.xpm xscreensaver.xpm - ) - - use pam && ( \ - insinto /etc/pam.d - doins "${FILESDIR}/pam.d/xscreensaver" - ) -} diff --git a/x11-misc/xscreensaver/xscreensaver-4.06-r1.ebuild b/x11-misc/xscreensaver/xscreensaver-4.06-r1.ebuild deleted file mode 100644 index 013ec4bfad16..000000000000 --- a/x11-misc/xscreensaver/xscreensaver-4.06-r1.ebuild +++ /dev/null @@ -1,116 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xscreensaver/xscreensaver-4.06-r1.ebuild,v 1.1 2002/10/26 00:11:50 azarah Exp $ - -IUSE="pam kerberos gtk motif gnome opengl jpeg xml" - -DESCRIPTION="a modular screensaver for X11" -SRC_URI="http://www.jwz.org/xscreensaver/${P}.tar.gz" -HOMEPAGE="http://www.jwz.org/xscreensaver/" - -LICENSE="BSD" -KEYWORDS="~x86 ~ppc ~sparc ~sparc64" -SLOT="0" - -DEPEND="sys-devel/bc - gtk? ( >=x11-libs/gtk+-2.0 - >=gnome-base/libglade-2.0 - dev-libs/libxml2 ) - !gtk? ( media-libs/gdk-pixbuf ) - pam? ( sys-libs/pam ) - motif? ( >=x11-libs/openmotif-2.1.30 ) - jpeg? ( media-libs/jpeg ) - opengl? ( virtual/opengl - >=media-libs/gle-3.0.1 ) - xml? ( dev-libs/libxml2 )" - -RDEPEND="${DEPEND} - media-libs/netpbm" - -src_unpack() { - - unpack ${A} - - cd ${S} - cp Makefile.in Makefile.in.orig - sed "s:hacks/glx po:hacks/glx:" \ - Makefile.in.orig > Makefile.in -} - -src_compile() { - - local myconf="" - - use gtk \ - && myconf="${myconf} --with-gtk --with-xml" \ - || myconf="${myconf} --without-gtk" - - use motif \ - && myconf="${myconf} --with-motif" \ - || myconf="${myconf} --without-motif" - - use pam \ - && myconf="${myconf} --with-pam" \ - || myconf="${myconf} --without-pam" - - use kerberos \ - && myconf="${myconf} --with-kerberos" \ - || myconf="${myconf} --without-kerberos" - - use opengl \ - && myconf="${myconf} --with-gl --with-gle" \ - || myconf="${myconf} --without-gl --without-gle" - - use jpeg \ - && myconf="${myconf} --with-jpeg" \ - || myconf="${myconf} --without-jpeg" - - use xml2 \ - && myconf="${myconf} --with-xml" \ - || myconf="${myconf} --without-xml" - - use nls \ - && myconf="${myconf} --enable-nls" \ - || myconf="${myconf} --disable-nls" - - export C_INCLUDE_PATH="/usr/include/libxml2/" - econf \ - --enable-hackdir=/usr/lib/xscreensaver \ - --with-mit-ext \ - --with-dpms-ext \ - --with-xinerama-ext \ - --with-xf86vmode-ext \ - --with-xf86gamma-ext \ - --with-proc-interrupts \ - --with-xpm \ - --with-xshm-ext \ - --with-xdbe-ext \ - --enable-locking \ - ${myconf} || die - - emake || die -} - -src_install() { - - [ -n "${KDEDIR}" ] && dodir ${KDEDIR}/bin - - make install_prefix="${D}" install || die - # install correctly in gnome2 - use gnome && ( \ - dodir /usr/share/gnome/capplets - insinto /usr/share/gnome/capplets - doins driver/screensaver-properties.desktop - ) - - use gnome && ( \ - insinto /usr/share/pixmaps - newins ${S}/utils/images/logo-50.xpm xscreensaver.xpm - ) - - use pam && ( \ - insinto /etc/pam.d - doins ${FILESDIR}/pam.d/xscreensaver - ) -} - diff --git a/x11-misc/xscreensaver/xscreensaver-4.06.ebuild b/x11-misc/xscreensaver/xscreensaver-4.06.ebuild deleted file mode 100644 index 02e806c4b8da..000000000000 --- a/x11-misc/xscreensaver/xscreensaver-4.06.ebuild +++ /dev/null @@ -1,115 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xscreensaver/xscreensaver-4.06.ebuild,v 1.2 2002/10/24 17:26:10 azarah Exp $ - -IUSE="pam kerberos gtk motif gnome opengl jpeg xml" - -DESCRIPTION="a modular screensaver for X11" -SRC_URI="http://www.jwz.org/xscreensaver/${P}.tar.gz" -HOMEPAGE="http://www.jwz.org/xscreensaver/" -LICENSE="BSD" -KEYWORDS="~x86 ~ppc ~sparc ~sparc64" -SLOT="0" - -DEPEND="sys-devel/bc - gtk? ( x11-libs/gtk+ ) - pam? ( sys-libs/pam ) - motif? ( >=x11-libs/openmotif-2.1.30 ) - jpeg? ( media-libs/jpeg ) - opengl? ( virtual/opengl - >=media-libs/gle-3.0.1 ) - gnome? ( media-libs/gdk-pixbuf - gnome-base/control-center ) - xml? ( dev-libs/libxml2 )" - -RDEPEND="${DEPEND} - media-libs/netpbm" - -src_unpack() { - - unpack ${A} - cd ${S} - - cp Makefile.in Makefile.in.orig - sed "s:hacks/glx po:hacks/glx:" \ - Makefile.in.orig > Makefile.in -} - -src_compile() { - local myconf="" - use gnome \ - && myconf="${myconf} --with-gnome" \ - || myconf="${myconf} --without-gnome" - - use gtk \ - && myconf="${myconf} --with-gtk" \ - || myconf="${myconf} --without-gtk" - - use motif \ - && myconf="${myconf} --with-motif" \ - || myconf="${myconf} --without-motif" - - use pam \ - && myconf="${myconf} --with-pam" \ - || myconf="${myconf} --without-pam" - - use kerberos \ - && myconf="${myconf} --with-kerberos" \ - || myconf="${myconf} --without-kerberos" - - use opengl \ - && myconf="${myconf} --with-gl --with-gle" \ - || myconf="${myconf} --without-gl --without-gle" - - use jpeg \ - && myconf="${myconf} --with-jpeg" \ - || myconf="${myconf} --without-jpeg" - - use xml \ - && myconf="${myconf} --with-xml" \ - || myconf="${myconf} --without-xml" - - use nls \ - && myconf="${myconf} --enable-nls" \ - || myconf="${myconf} --disable-nls" - - export C_INCLUDE_PATH="/usr/include/libxml2/" - econf \ - --enable-hackdir=/usr/lib/xscreensaver \ - --with-mit-ext \ - --with-dpms-ext \ - --with-xinerama-ext \ - --with-xf86vmode-ext \ - --with-xf86gamma-ext \ - --with-proc-interrupts \ - --with-xpm \ - --with-xshm-ext \ - --with-xdbe-ext \ - --enable-locking \ - ${myconf} || die - - emake || die -} - -src_install() { - - [ -n "$KDEDIR" ] && dodir "$KDEDIR/bin" - - make install_prefix="${D}" install || die - # install correctly in gnome2 - use gnome && ( \ - dodir /usr/share/gnome/capplets - insinto /usr/share/gnome/capplets - doins "driver/screensaver-properties.desktop" - ) - - use gnome && ( \ - insinto /usr/share/pixmaps - newins ${S}/utils/images/logo-50.xpm xscreensaver.xpm - ) - - use pam && ( \ - insinto /etc/pam.d - doins "${FILESDIR}/pam.d/xscreensaver" - ) -} |