diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2004-06-05 00:45:13 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2004-06-05 00:45:13 +0000 |
commit | d9a1dc60cfeaca3adffc9349cde73243af34fd6a (patch) | |
tree | 8da098e3f4e250c21ad40d2387e275d0ec82824d | |
parent | repoman: whitespace cleanup (Manifest recommit) (diff) | |
download | gentoo-2-d9a1dc60cfeaca3adffc9349cde73243af34fd6a.tar.gz gentoo-2-d9a1dc60cfeaca3adffc9349cde73243af34fd6a.tar.bz2 gentoo-2-d9a1dc60cfeaca3adffc9349cde73243af34fd6a.zip |
removed old ebuilds
-rw-r--r-- | app-crypt/heimdal/heimdal-0.6.1-r1.ebuild | 102 | ||||
-rw-r--r-- | app-crypt/heimdal/heimdal-0.6.1.ebuild | 103 | ||||
-rw-r--r-- | app-crypt/heimdal/heimdal-0.6.ebuild | 101 |
3 files changed, 0 insertions, 306 deletions
diff --git a/app-crypt/heimdal/heimdal-0.6.1-r1.ebuild b/app-crypt/heimdal/heimdal-0.6.1-r1.ebuild deleted file mode 100644 index ebba35276b24..000000000000 --- a/app-crypt/heimdal/heimdal-0.6.1-r1.ebuild +++ /dev/null @@ -1,102 +0,0 @@ -# Copyright 1999-2004 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/heimdal/heimdal-0.6.1-r1.ebuild,v 1.1 2004/05/10 11:15:33 aliz Exp $ - -inherit libtool eutils - -DESCRIPTION="Kerberos 5 implementation from KTH" -SRC_URI="ftp://ftp.pdc.kth.se/pub/heimdal/src/${P}.tar.gz" -HOMEPAGE="http://www.pdc.kth.se/heimdal/" - -SLOT="0" -LICENSE="as-is" -KEYWORDS="x86 sparc ppc alpha ~ia64 amd64 hppa mips" -IUSE="ssl berkdb ipv6" -PROVIDE="virtual/krb5" - -RDEPEND=" - ssl? ( dev-libs/openssl ) - berkdb? ( sys-libs/db ) - !virtual/krb5" - # ldap? ( net-nds/openldap ) - # With this enabled, we create a multiple stage - # circular dependency with USE="ldap kerberos" - # -- Kain <kain@kain.org> 05 Dec 2002 - -DEPEND="${RDEPEND} - sys-devel/autoconf - sys-devel/automake - sys-devel/gcc - >=sys-apps/sed-4" - -src_unpack() { - unpack ${A} ; cd ${S} - - epatch ${FILESDIR}/${PN}-${PV:0:3}-rxapps.patch - epatch ${FILESDIR}/${PN}-${PV:0:3}-berkdb.patch - epatch ${FILESDIR}/${P}-fPIC.patch - - # Um, I don't think the below is doing anything since automake is - # run in src_compile(), but I'll leave it alone since this ebuild - # isn't mine... (16 Feb 2004 agriffis) - cd ${S}/lib/krb5 || die - sed -i "s:LIB_crypt = @LIB_crypt@:LIB_crypt = -lssl @LIB_crypt@:g" Makefile.in || die - -} - -src_compile() { - - elibtoolize - - aclocal -I cf || die "configure problem" - autoheader || die "configure problem" - automake -a || die "configure problem" - autoconf || die "configure problem" - - local myconf=" - $(use_with ipv6) - $(use_with berkdb berkely-db) - $(use_with ssl openssl) - --enable-shared" - - #use ldap && myconf="${myconf} --with-open-ldap=/usr" - - econf ${myconf} || die "econf failed" - - emake prefix=/usr \ - sysconfdir=/etc \ - mandir=/usr/share/man \ - infodir=/usr/share/info \ - datadir=/usr/share \ - localstatedir=/var/lib \ - includedir=/usr/include/heimdal \ - || die -} - -src_install() { - make prefix=${D}/usr \ - sysconfdir=${D}/etc \ - mandir=${D}/usr/share/man \ - infodir=${D}/usr/share/info \ - datadir=${D}/usr/share \ - localstatedir=${D}/var/lib \ - includedir=${D}/usr/include/heimdal \ - install || die - - #dodir /etc/env.d - #cp ${FILESDIR}/01heimdal ${D}/etc/env.d - - dodoc COPYRIGHT ChangeLog README NEWS PROBLEMS TODO - - # Begin client rename and install - for i in {telnetd,ftpd} - do - mv ${D}/usr/share/man/man8/${i}.8.gz ${D}/usr/share/man/man8/k${i}.8.gz - mv ${D}/usr/sbin/${i} ${D}/usr/sbin/k${i} - done - for i in {rcp,rsh,telnet,ftp,rlogin} - do - mv ${D}/usr/share/man/man1/${i}.1.gz ${D}/usr/share/man/man1/k${i}.1.gz - mv ${D}/usr/bin/${i} ${D}/usr/bin/k${i} - done -} diff --git a/app-crypt/heimdal/heimdal-0.6.1.ebuild b/app-crypt/heimdal/heimdal-0.6.1.ebuild deleted file mode 100644 index ef2a99f6a422..000000000000 --- a/app-crypt/heimdal/heimdal-0.6.1.ebuild +++ /dev/null @@ -1,103 +0,0 @@ -# Copyright 1999-2004 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/heimdal/heimdal-0.6.1.ebuild,v 1.10 2004/05/06 10:06:53 dragonheart Exp $ - -inherit libtool eutils - -DESCRIPTION="Kerberos 5 implementation from KTH" -SRC_URI="ftp://ftp.pdc.kth.se/pub/heimdal/src/${P}.tar.gz" -HOMEPAGE="http://www.pdc.kth.se/heimdal/" - -SLOT="0" -LICENSE="as-is" -KEYWORDS="x86 sparc ppc alpha ~ia64 amd64 hppa mips" -IUSE="ssl ldap berkdb ipv6" -PROVIDE="virtual/krb5" - -RDEPEND=" - ssl? ( dev-libs/openssl ) - berkdb? ( sys-libs/db ) - !app-crypt/kth-krb" - # ldap? ( net-nds/openldap ) - # With this enabled, we create a multiple stage - # circular dependency with USE="ldap kerberos" - # -- Kain <kain@kain.org> 05 Dec 2002 - -DEPEND="${RDEPEND} - sys-devel/autoconf - sys-devel/automake - sys-devel/gcc - >=sys-apps/sed-4" - - -src_unpack() { - unpack ${A} ; cd ${S} - - #epatch ${FILESDIR}/${PN}-${PV:0:3}-gcc3.patch - epatch ${FILESDIR}/${PN}-${PV:0:3}-rxapps.patch - epatch ${FILESDIR}/${PN}-${PV:0:3}-berkdb.patch - - # Um, I don't think the below is doing anything since automake is - # run in src_compile(), but I'll leave it alone since this ebuild - # isn't mine... (16 Feb 2004 agriffis) - cd ${S}/lib/krb5 || die - sed -i "s:LIB_crypt = @LIB_crypt@:LIB_crypt = -lssl @LIB_crypt@:g" Makefile.in || die - -} - -src_compile() { - - elibtoolize - - aclocal -I cf || die "configure problem" - autoheader || die "configure problem" - automake -a || die "configure problem" - autoconf || die "configure problem" - - local myconf=" - $(use_with ipv6) - $(use_with berkdb berkely-db) - --enable-shared" - - use ssl \ - && myconf="${myconf} --with-openssl=/usr" \ - || myconf="${myconf} --without-openssl" - - #use ldap && myconf="${myconf} --with-open-ldap=/usr" - - econf ${myconf} || die "econf failed" - - # editline archive is linked into shared objects, needs to be - # built with -fPIC (16 Feb 2004 agriffis) - sed -i -e '/^CFLAGS\>/s/$/ -fPIC/' lib/editline/Makefile || die - - emake || die -} - -src_install() { - make prefix=${D}/usr \ - sysconfdir=${D}/etc \ - mandir=${D}/usr/share/man \ - infodir=${D}/usr/share/info \ - datadir=${D}/usr/share \ - localstatedir=${D}/var/lib \ - includedir=${D}/usr/include/heimdal \ - install || die - - #dodir /etc/env.d - #cp ${FILESDIR}/01heimdal ${D}/etc/env.d - - dodoc COPYRIGHT ChangeLog README NEWS PROBLEMS TODO - - # Begin client rename and install - for i in {telnetd,ftpd} - do - mv ${D}/usr/share/man/man8/${i}.8.gz ${D}/usr/share/man/man8/k${i}.8.gz - mv ${D}/usr/sbin/${i} ${D}/usr/sbin/k${i} - done - for i in {rcp,rsh,telnet,ftp,rlogin} - do - mv ${D}/usr/share/man/man1/${i}.1.gz ${D}/usr/share/man/man1/k${i}.1.gz - mv ${D}/usr/bin/${i} ${D}/usr/bin/k${i} - done -} diff --git a/app-crypt/heimdal/heimdal-0.6.ebuild b/app-crypt/heimdal/heimdal-0.6.ebuild deleted file mode 100644 index ee0b309b377e..000000000000 --- a/app-crypt/heimdal/heimdal-0.6.ebuild +++ /dev/null @@ -1,101 +0,0 @@ -# Copyright 1999-2004 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/heimdal/heimdal-0.6.ebuild,v 1.18 2004/05/10 11:15:33 aliz Exp $ - -inherit libtool eutils - -DESCRIPTION="Kerberos 5 implementation from KTH" -SRC_URI="ftp://ftp.pdc.kth.se/pub/heimdal/src/${P}.tar.gz" -HOMEPAGE="http://www.pdc.kth.se/heimdal/" - -SLOT="0" -LICENSE="as-is" -KEYWORDS="x86 sparc ppc alpha ia64 amd64 hppa mips" -IUSE="ssl berkdb ipv6" -PROVIDE="virtual/krb5" - -RDEPEND="ssl? ( dev-libs/openssl ) - berkdb? ( sys-libs/db ) - !app-crypt/kth-krb" - # ldap? ( net-nds/openldap ) - # With this enabled, we create a multiple stage - # circular dependency with USE="ldap kerberos" - # -- Kain <kain@kain.org> 05 Dec 2002 - -DEPEND="${RDEPEND} - sys-devel/autoconf - sys-devel/automake - sys-devel/gcc - >=sys-apps/sed-4" - -src_unpack() { - unpack ${A} ; cd ${S} - - epatch ${FILESDIR}/${P}-gcc3.patch - epatch ${FILESDIR}/${P}-rxapps.patch - epatch ${FILESDIR}/${P}-berkdb.patch - - # Um, I don't think the below is doing anything since automake is - # run in src_compile(), but I'll leave it alone since this ebuild - # isn't mine... (16 Feb 2004 agriffis) - cd ${S}/lib/krb5 || die - sed -i "s:LIB_crypt = @LIB_crypt@:LIB_crypt = -lssl @LIB_crypt@:g" Makefile.in || die - -} - -src_compile() { - - elibtoolize - - aclocal -I cf || die "configure problem" - autoheader || die "configure problem" - automake -a || die "configure problem" - autoconf || die "configure problem" - - local myconf=" - $(use_with ipv6) - $(use_with berkdb berkely-db) - --enable-shared" - - use ssl \ - && myconf="${myconf} --with-openssl=/usr" \ - || myconf="${myconf} --without-openssl" - - #use ldap && myconf="${myconf} --with-open-ldap=/usr" - - econf ${myconf} || die "econf failed" - - # editline archive is linked into shared objects, needs to be - # built with -fPIC (16 Feb 2004 agriffis) - sed -i -e '/^CFLAGS\>/s/$/ -fPIC/' lib/editline/Makefile || die - - emake || die -} - -src_install() { - make prefix=${D}/usr \ - sysconfdir=${D}/etc \ - mandir=${D}/usr/share/man \ - infodir=${D}/usr/share/info \ - datadir=${D}/usr/share \ - localstatedir=${D}/var/lib \ - includedir=${D}/usr/include/heimdal \ - install || die - - #dodir /etc/env.d - #cp ${FILESDIR}/01heimdal ${D}/etc/env.d - - dodoc COPYRIGHT ChangeLog README NEWS PROBLEMS TODO - - # Begin client rename and install - for i in {telnetd,ftpd} - do - mv ${D}/usr/share/man/man8/${i}.8.gz ${D}/usr/share/man/man8/k${i}.8.gz - mv ${D}/usr/sbin/${i} ${D}/usr/sbin/k${i} - done - for i in {rcp,rsh,telnet,ftp,rlogin} - do - mv ${D}/usr/share/man/man1/${i}.1.gz ${D}/usr/share/man/man1/k${i}.1.gz - mv ${D}/usr/bin/${i} ${D}/usr/bin/k${i} - done -} |