diff options
author | Eray Aslan <eras@gentoo.org> | 2013-03-11 11:51:44 +0000 |
---|---|---|
committer | Eray Aslan <eras@gentoo.org> | 2013-03-11 11:51:44 +0000 |
commit | 860b1bd5f1ed7e0b8185158ff60482d4feaab65d (patch) | |
tree | cff448c41d90497f55e6b8ab5663f2aebdc13def /app-crypt/heimdal | |
parent | Version bump. Remove intermediate version. (diff) | |
download | gentoo-2-860b1bd5f1ed7e0b8185158ff60482d4feaab65d.tar.gz gentoo-2-860b1bd5f1ed7e0b8185158ff60482d4feaab65d.tar.bz2 gentoo-2-860b1bd5f1ed7e0b8185158ff60482d4feaab65d.zip |
Remove old
(Portage version: 2.2.0_alpha166/cvs/Linux x86_64, signed Manifest commit with key 0x77F1F175586A3B1F)
Diffstat (limited to 'app-crypt/heimdal')
-rw-r--r-- | app-crypt/heimdal/ChangeLog | 8 | ||||
-rw-r--r-- | app-crypt/heimdal/files/CVE-2011-4862.patch | 16 | ||||
-rw-r--r-- | app-crypt/heimdal/files/heimdal-kadmind.initd-r1 | 24 | ||||
-rw-r--r-- | app-crypt/heimdal/files/heimdal-kdc.initd-r1 | 25 | ||||
-rw-r--r-- | app-crypt/heimdal/files/heimdal-kpasswdd.initd-r1 | 24 | ||||
-rw-r--r-- | app-crypt/heimdal/heimdal-1.5.1-r1.ebuild | 148 | ||||
-rw-r--r-- | app-crypt/heimdal/heimdal-1.5.2-r1.ebuild | 148 | ||||
-rw-r--r-- | app-crypt/heimdal/heimdal-1.5.2-r2.ebuild | 148 | ||||
-rw-r--r-- | app-crypt/heimdal/heimdal-1.5.2.ebuild | 147 |
9 files changed, 7 insertions, 681 deletions
diff --git a/app-crypt/heimdal/ChangeLog b/app-crypt/heimdal/ChangeLog index 88d83d4e0718..bbf9f266fd8e 100644 --- a/app-crypt/heimdal/ChangeLog +++ b/app-crypt/heimdal/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-crypt/heimdal # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/heimdal/ChangeLog,v 1.209 2013/03/11 07:38:47 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/heimdal/ChangeLog,v 1.210 2013/03/11 11:51:43 eras Exp $ + + 11 Mar 2013; Eray Aslan <eras@gentoo.org> -files/CVE-2011-4862.patch, + -files/heimdal-kadmind.initd-r1, -files/heimdal-kdc.initd-r1, + -files/heimdal-kpasswdd.initd-r1, -heimdal-1.5.1-r1.ebuild, + -heimdal-1.5.2-r1.ebuild, -heimdal-1.5.2-r2.ebuild, -heimdal-1.5.2.ebuild: + Remove old 11 Mar 2013; Agostino Sarubbo <ago@gentoo.org> heimdal-1.5.3.ebuild: Stable for sh, wrt bug #459166 diff --git a/app-crypt/heimdal/files/CVE-2011-4862.patch b/app-crypt/heimdal/files/CVE-2011-4862.patch deleted file mode 100644 index 1c4672fcaf98..000000000000 --- a/app-crypt/heimdal/files/CVE-2011-4862.patch +++ /dev/null @@ -1,16 +0,0 @@ -Stolen shamelessly from FreeBSD - -Index: crypto/heimdal/appl/telnet/libtelnet/encrypt.c -=================================================================== ---- appl/telnet/libtelnet/encrypt.c (revision 228798) -+++ appl/telnet/libtelnet/encrypt.c (working copy) -@@ -736,6 +736,9 @@ - int dir = kp->dir; - int ret = 0; - -+ if (len > MAXKEYLEN) -+ len = MAXKEYLEN; -+ - if (!(ep = (*kp->getcrypt)(*kp->modep))) { - if (len == 0) - return; diff --git a/app-crypt/heimdal/files/heimdal-kadmind.initd-r1 b/app-crypt/heimdal/files/heimdal-kadmind.initd-r1 deleted file mode 100644 index 798d94fe641a..000000000000 --- a/app-crypt/heimdal/files/heimdal-kadmind.initd-r1 +++ /dev/null @@ -1,24 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/heimdal/files/heimdal-kadmind.initd-r1,v 1.1 2011/02/16 22:14:12 eras Exp $ - -depend() { - need net - use heimdal-kdc - after logger -} - -start() { - ebegin "Starting Heimdal kadmind" - /usr/sbin/kadmind "${OPTIONS}" & - echo $! > /var/run/heimdal-kadmind.pid - eend $? -} - -stop() { - ebegin "Stopping Heimdal kadmind" - start-stop-daemon --stop --quiet --exec \ - /usr/sbin/kadmind - eend $? -} diff --git a/app-crypt/heimdal/files/heimdal-kdc.initd-r1 b/app-crypt/heimdal/files/heimdal-kdc.initd-r1 deleted file mode 100644 index be425c4126c3..000000000000 --- a/app-crypt/heimdal/files/heimdal-kdc.initd-r1 +++ /dev/null @@ -1,25 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/heimdal/files/heimdal-kdc.initd-r1,v 1.1 2011/02/16 22:14:12 eras Exp $ - -depend() { - need net - after logger -} - -OPTIONS="${OPTIONS} --detach" - -start() { - ebegin "Starting Heimdal kdc" - start-stop-daemon --start --quiet --exec \ - /usr/sbin/kdc -- ${OPTIONS# } - eend $? -} - -stop() { - ebegin "Stopping Heimdal kdc" - start-stop-daemon --stop --quiet --exec \ - /usr/sbin/kdc - eend $? -} diff --git a/app-crypt/heimdal/files/heimdal-kpasswdd.initd-r1 b/app-crypt/heimdal/files/heimdal-kpasswdd.initd-r1 deleted file mode 100644 index 2f3afa2d310a..000000000000 --- a/app-crypt/heimdal/files/heimdal-kpasswdd.initd-r1 +++ /dev/null @@ -1,24 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/heimdal/files/heimdal-kpasswdd.initd-r1,v 1.1 2011/02/16 22:14:12 eras Exp $ - -depend() { - need net - use heimdal-kdc - after logger -} - -start() { - ebegin "Starting Heimdal kpasswdd" - start-stop-daemon --background --start --quiet --exec \ - /usr/sbin/kpasswdd -- "${OPTIONS}" - eend $? -} - -stop() { - ebegin "Stopping Heimdal kpasswdd" - start-stop-daemon --stop --quiet --exec \ - /usr/sbin/kpasswdd - eend $? -} diff --git a/app-crypt/heimdal/heimdal-1.5.1-r1.ebuild b/app-crypt/heimdal/heimdal-1.5.1-r1.ebuild deleted file mode 100644 index 6c8fd008fdbd..000000000000 --- a/app-crypt/heimdal/heimdal-1.5.1-r1.ebuild +++ /dev/null @@ -1,148 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/heimdal/heimdal-1.5.1-r1.ebuild,v 1.11 2012/05/31 03:25:16 zmedico Exp $ - -EAPI=2 -# PYTHON_BDEPEND="2" -VIRTUALX_REQUIRED="manual" - -inherit autotools db-use eutils multilib python toolchain-funcs virtualx flag-o-matic - -MY_P="${P}" -DESCRIPTION="Kerberos 5 implementation from KTH" -HOMEPAGE="http://www.h5l.org/" -SRC_URI="http://www.h5l.org/dist/src/${MY_P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86" -IUSE="afs +berkdb caps hdb-ldap ipv6 otp +pkinit ssl static-libs threads test X" - -RDEPEND="ssl? ( dev-libs/openssl ) - berkdb? ( sys-libs/db ) - !berkdb? ( sys-libs/gdbm ) - caps? ( sys-libs/libcap-ng ) - >=dev-db/sqlite-3.5.7 - >=sys-libs/e2fsprogs-libs-1.41.11 - sys-libs/ncurses - sys-libs/readline - afs? ( net-fs/openafs ) - hdb-ldap? ( >=net-nds/openldap-2.3.0 ) - X? ( x11-libs/libX11 - x11-libs/libXau - x11-libs/libXt ) - !!app-crypt/mit-krb5 - !!app-crypt/mit-krb5-appl" - -DEPEND="${RDEPEND} - =dev-lang/python-2* - virtual/pkgconfig - >=sys-devel/autoconf-2.62 - test? ( X? ( ${VIRTUALX_DEPEND} ) )" - -pkg_setup() { - python_set_active_version 2 - python_pkg_setup -} - -src_prepare() { - epatch "${FILESDIR}/heimdal_missing-include.patch" - epatch "${FILESDIR}/CVE-2011-4862.patch" - epatch "${FILESDIR}/heimdal_db5.patch" - epatch "${FILESDIR}/heimdal_disable-check-iprop.patch" - epatch "${FILESDIR}/heimdal_link_order.patch" - eautoreconf -} - -src_configure() { - # QA - append-flags -fno-strict-aliasing - - local myconf="" - if use berkdb; then - myconf="--with-berkeley-db --with-berkeley-db-include=$(db_includedir)" - else - myconf="--without-berkeley-db" - fi - econf \ - --enable-kcm \ - --disable-osfc2 \ - --enable-shared \ - --with-libintl=/usr \ - --with-readline=/usr \ - --with-sqlite3=/usr \ - --libexecdir=/usr/sbin \ - $(use_enable afs afs-support) \ - $(use_enable otp) \ - $(use_enable pkinit kx509) \ - $(use_enable pkinit pk-init) \ - $(use_enable static-libs static) \ - $(use_enable threads pthread-support) \ - $(use_with caps capng) \ - $(use_with hdb-ldap openldap /usr) \ - $(use_with ipv6) \ - $(use_with ssl openssl /usr) \ - $(use_with X x) \ - ${myconf} -} - -src_compile() { - emake -j1 || die "emake failed" -} - -src_install() { - INSTALL_CATPAGES="no" emake DESTDIR="${D}" install || die "emake install failed" - - dodoc ChangeLog README NEWS TODO - - # Begin client rename and install - for i in {telnetd,ftpd,rshd,popper} - do - mv "${D}"/usr/share/man/man8/{,k}${i}.8 - mv "${D}"/usr/sbin/{,k}${i} - done - - for i in {rcp,rsh,telnet,ftp,su,login,pagsh,kf} - do - mv "${D}"/usr/share/man/man1/{,k}${i}.1 - mv "${D}"/usr/bin/{,k}${i} - done - - mv "${D}"/usr/share/man/man5/{,k}ftpusers.5 - mv "${D}"/usr/share/man/man5/{,k}login.access.5 - - newinitd "${FILESDIR}"/heimdal-kdc.initd-r1 heimdal-kdc - newinitd "${FILESDIR}"/heimdal-kadmind.initd-r1 heimdal-kadmind - newinitd "${FILESDIR}"/heimdal-kpasswdd.initd-r1 heimdal-kpasswdd - newinitd "${FILESDIR}"/heimdal-kcm.initd-r1 heimdal-kcm - - newconfd "${FILESDIR}"/heimdal-kdc.confd heimdal-kdc - newconfd "${FILESDIR}"/heimdal-kadmind.confd heimdal-kadmind - newconfd "${FILESDIR}"/heimdal-kpasswdd.confd heimdal-kpasswdd - newconfd "${FILESDIR}"/heimdal-kcm.confd heimdal-kcm - - insinto /etc - newins "${FILESDIR}"/krb5.conf krb5.conf.example - - if use hdb-ldap; then - insinto /etc/openldap/schema - doins "${S}/lib/hdb/hdb.schema" - fi - - use static-libs || find "${D}"/usr/lib* -name '*.la' -delete - - # default database dir - keepdir /var/heimdal - - # Ugly hack for broken symlink - bug #417081 - rm "${D}"/usr/share/man/man5/qop.5 || die - dosym mech.5 /usr/share/man/man5/qop.5 -} - -pkg_preinst() { - preserve_old_lib /usr/$(get_libdir)/libgssapi.so.2 -} - -pkg_postinst() { - preserve_old_lib_notify /usr/$(get_libdir)/libgssapi.so.2 -} diff --git a/app-crypt/heimdal/heimdal-1.5.2-r1.ebuild b/app-crypt/heimdal/heimdal-1.5.2-r1.ebuild deleted file mode 100644 index 7b566688e1ea..000000000000 --- a/app-crypt/heimdal/heimdal-1.5.2-r1.ebuild +++ /dev/null @@ -1,148 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/heimdal/heimdal-1.5.2-r1.ebuild,v 1.1 2012/06/13 17:48:19 eras Exp $ - -EAPI=4 -# PYTHON_BDEPEND="2" -VIRTUALX_REQUIRED="manual" - -inherit autotools db-use eutils multilib python toolchain-funcs virtualx flag-o-matic - -MY_P="${P}" -DESCRIPTION="Kerberos 5 implementation from KTH" -HOMEPAGE="http://www.h5l.org/" -SRC_URI="http://www.h5l.org/dist/src/${MY_P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="afs +berkdb caps hdb-ldap ipv6 otp +pkinit ssl static-libs threads test X" - -RDEPEND="ssl? ( dev-libs/openssl ) - berkdb? ( sys-libs/db ) - !berkdb? ( sys-libs/gdbm ) - caps? ( sys-libs/libcap-ng ) - >=dev-db/sqlite-3.5.7 - >=sys-libs/e2fsprogs-libs-1.41.11 - sys-libs/ncurses - sys-libs/readline - afs? ( net-fs/openafs ) - hdb-ldap? ( >=net-nds/openldap-2.3.0 ) - X? ( x11-libs/libX11 - x11-libs/libXau - x11-libs/libXt ) - !!app-crypt/mit-krb5 - !!app-crypt/mit-krb5-appl" - -DEPEND="${RDEPEND} - =dev-lang/python-2* - virtual/pkgconfig - >=sys-devel/autoconf-2.62 - test? ( X? ( ${VIRTUALX_DEPEND} ) )" - -pkg_setup() { - python_set_active_version 2 - python_pkg_setup -} - -src_prepare() { - epatch "${FILESDIR}/heimdal_missing-include.patch" - epatch "${FILESDIR}/heimdal_db5.patch" - epatch "${FILESDIR}/heimdal_disable-check-iprop.patch" - epatch "${FILESDIR}/heimdal_link_order.patch" - epatch "${FILESDIR}/heimdal_missing_symbols.patch" - eautoreconf -} - -src_configure() { - # QA - append-flags -fno-strict-aliasing - - local myconf="" - if use berkdb; then - myconf="--with-berkeley-db --with-berkeley-db-include=$(db_includedir)" - else - myconf="--without-berkeley-db" - fi - econf \ - --enable-kcm \ - --disable-osfc2 \ - --enable-shared \ - --with-libintl=/usr \ - --with-readline=/usr \ - --with-sqlite3=/usr \ - --libexecdir=/usr/sbin \ - $(use_enable afs afs-support) \ - $(use_enable otp) \ - $(use_enable pkinit kx509) \ - $(use_enable pkinit pk-init) \ - $(use_enable static-libs static) \ - $(use_enable threads pthread-support) \ - $(use_with caps capng) \ - $(use_with hdb-ldap openldap /usr) \ - $(use_with ipv6) \ - $(use_with ssl openssl /usr) \ - $(use_with X x) \ - ${myconf} -} - -src_compile() { - emake -j1 -} - -src_install() { - INSTALL_CATPAGES="no" emake DESTDIR="${D}" install - - dodoc ChangeLog README NEWS TODO - - # Begin client rename and install - for i in {telnetd,ftpd,rshd,popper} - do - mv "${D}"/usr/share/man/man8/{,k}${i}.8 - mv "${D}"/usr/sbin/{,k}${i} - done - - for i in {rcp,rsh,telnet,ftp,su,login,pagsh,kf} - do - mv "${D}"/usr/share/man/man1/{,k}${i}.1 - mv "${D}"/usr/bin/{,k}${i} - done - - mv "${D}"/usr/share/man/man5/{,k}ftpusers.5 - mv "${D}"/usr/share/man/man5/{,k}login.access.5 - - newinitd "${FILESDIR}"/heimdal-kdc.initd-r1 heimdal-kdc - newinitd "${FILESDIR}"/heimdal-kadmind.initd-r1 heimdal-kadmind - newinitd "${FILESDIR}"/heimdal-kpasswdd.initd-r1 heimdal-kpasswdd - newinitd "${FILESDIR}"/heimdal-kcm.initd-r1 heimdal-kcm - - newconfd "${FILESDIR}"/heimdal-kdc.confd heimdal-kdc - newconfd "${FILESDIR}"/heimdal-kadmind.confd heimdal-kadmind - newconfd "${FILESDIR}"/heimdal-kpasswdd.confd heimdal-kpasswdd - newconfd "${FILESDIR}"/heimdal-kcm.confd heimdal-kcm - - insinto /etc - newins "${FILESDIR}"/krb5.conf krb5.conf.example - - if use hdb-ldap; then - insinto /etc/openldap/schema - doins "${S}/lib/hdb/hdb.schema" - fi - - use static-libs || prune_libtool_files - - # default database dir - keepdir /var/heimdal - - # Ugly hack for broken symlink - bug #417081 - rm "${D}"/usr/share/man/man5/qop.5 || die - dosym mech.5 /usr/share/man/man5/qop.5 -} - -pkg_preinst() { - preserve_old_lib /usr/$(get_libdir)/libgssapi.so.2 -} - -pkg_postinst() { - preserve_old_lib_notify /usr/$(get_libdir)/libgssapi.so.2 -} diff --git a/app-crypt/heimdal/heimdal-1.5.2-r2.ebuild b/app-crypt/heimdal/heimdal-1.5.2-r2.ebuild deleted file mode 100644 index 560fba63571c..000000000000 --- a/app-crypt/heimdal/heimdal-1.5.2-r2.ebuild +++ /dev/null @@ -1,148 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/heimdal/heimdal-1.5.2-r2.ebuild,v 1.1 2013/01/16 19:58:57 eras Exp $ - -EAPI=4 -# PYTHON_BDEPEND="2" -VIRTUALX_REQUIRED="manual" - -inherit autotools db-use eutils multilib python toolchain-funcs virtualx flag-o-matic - -MY_P="${P}" -DESCRIPTION="Kerberos 5 implementation from KTH" -HOMEPAGE="http://www.h5l.org/" -SRC_URI="http://www.h5l.org/dist/src/${MY_P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="afs +berkdb caps hdb-ldap ipv6 otp +pkinit ssl static-libs threads test X" - -RDEPEND="ssl? ( dev-libs/openssl ) - berkdb? ( sys-libs/db ) - !berkdb? ( sys-libs/gdbm ) - caps? ( sys-libs/libcap-ng ) - >=dev-db/sqlite-3.5.7 - >=sys-libs/e2fsprogs-libs-1.41.11 - sys-libs/ncurses - sys-libs/readline - afs? ( net-fs/openafs ) - hdb-ldap? ( >=net-nds/openldap-2.3.0 ) - X? ( x11-libs/libX11 - x11-libs/libXau - x11-libs/libXt ) - !!app-crypt/mit-krb5 - !!app-crypt/mit-krb5-appl" - -DEPEND="${RDEPEND} - =dev-lang/python-2* - virtual/pkgconfig - >=sys-devel/autoconf-2.62 - test? ( X? ( ${VIRTUALX_DEPEND} ) )" - -pkg_setup() { - python_set_active_version 2 - python_pkg_setup -} - -src_prepare() { - epatch "${FILESDIR}/heimdal_missing-include.patch" - epatch "${FILESDIR}/heimdal_db5.patch" - epatch "${FILESDIR}/heimdal_disable-check-iprop.patch" - epatch "${FILESDIR}/heimdal_link_order.patch" - epatch "${FILESDIR}/heimdal_missing_symbols.patch" - eautoreconf -} - -src_configure() { - # QA - append-flags -fno-strict-aliasing - - local myconf="" - if use berkdb; then - myconf="--with-berkeley-db --with-berkeley-db-include=$(db_includedir)" - else - myconf="--without-berkeley-db" - fi - econf \ - --enable-kcm \ - --disable-osfc2 \ - --enable-shared \ - --with-libintl=/usr \ - --with-readline=/usr \ - --with-sqlite3=/usr \ - --libexecdir=/usr/sbin \ - $(use_enable afs afs-support) \ - $(use_enable otp) \ - $(use_enable pkinit kx509) \ - $(use_enable pkinit pk-init) \ - $(use_enable static-libs static) \ - $(use_enable threads pthread-support) \ - $(use_with caps capng) \ - $(use_with hdb-ldap openldap /usr) \ - $(use_with ipv6) \ - $(use_with ssl openssl /usr) \ - $(use_with X x) \ - ${myconf} -} - -src_compile() { - emake -j1 -} - -src_install() { - INSTALL_CATPAGES="no" emake DESTDIR="${D}" install - - dodoc ChangeLog README NEWS TODO - - # Begin client rename and install - for i in {telnetd,ftpd,rshd,popper} - do - mv "${D}"/usr/share/man/man8/{,k}${i}.8 - mv "${D}"/usr/sbin/{,k}${i} - done - - for i in {rcp,rsh,telnet,ftp,su,login,pagsh,kf} - do - mv "${D}"/usr/share/man/man1/{,k}${i}.1 - mv "${D}"/usr/bin/{,k}${i} - done - - mv "${D}"/usr/share/man/man5/{,k}ftpusers.5 - mv "${D}"/usr/share/man/man5/{,k}login.access.5 - - newinitd "${FILESDIR}"/heimdal-kdc.initd-r2 heimdal-kdc - newinitd "${FILESDIR}"/heimdal-kadmind.initd-r2 heimdal-kadmind - newinitd "${FILESDIR}"/heimdal-kpasswdd.initd-r2 heimdal-kpasswdd - newinitd "${FILESDIR}"/heimdal-kcm.initd-r1 heimdal-kcm - - newconfd "${FILESDIR}"/heimdal-kdc.confd heimdal-kdc - newconfd "${FILESDIR}"/heimdal-kadmind.confd heimdal-kadmind - newconfd "${FILESDIR}"/heimdal-kpasswdd.confd heimdal-kpasswdd - newconfd "${FILESDIR}"/heimdal-kcm.confd heimdal-kcm - - insinto /etc - newins "${FILESDIR}"/krb5.conf krb5.conf.example - - if use hdb-ldap; then - insinto /etc/openldap/schema - doins "${S}/lib/hdb/hdb.schema" - fi - - use static-libs || find "${D}"/usr/lib* -name '*.la' -delete - - # default database dir - keepdir /var/heimdal - - # Ugly hack for broken symlink - bug #417081 - rm "${D}"/usr/share/man/man5/qop.5 || die - dosym mech.5 /usr/share/man/man5/qop.5 -} - -pkg_preinst() { - preserve_old_lib /usr/$(get_libdir)/libgssapi.so.2 -} - -pkg_postinst() { - preserve_old_lib_notify /usr/$(get_libdir)/libgssapi.so.2 -} diff --git a/app-crypt/heimdal/heimdal-1.5.2.ebuild b/app-crypt/heimdal/heimdal-1.5.2.ebuild deleted file mode 100644 index 695f70ea569e..000000000000 --- a/app-crypt/heimdal/heimdal-1.5.2.ebuild +++ /dev/null @@ -1,147 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/heimdal/heimdal-1.5.2.ebuild,v 1.4 2012/05/31 03:25:16 zmedico Exp $ - -EAPI=4 -# PYTHON_BDEPEND="2" -VIRTUALX_REQUIRED="manual" - -inherit autotools db-use eutils multilib python toolchain-funcs virtualx flag-o-matic - -MY_P="${P}" -DESCRIPTION="Kerberos 5 implementation from KTH" -HOMEPAGE="http://www.h5l.org/" -SRC_URI="http://www.h5l.org/dist/src/${MY_P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="afs +berkdb caps hdb-ldap ipv6 otp +pkinit ssl static-libs threads test X" - -RDEPEND="ssl? ( dev-libs/openssl ) - berkdb? ( sys-libs/db ) - !berkdb? ( sys-libs/gdbm ) - caps? ( sys-libs/libcap-ng ) - >=dev-db/sqlite-3.5.7 - >=sys-libs/e2fsprogs-libs-1.41.11 - sys-libs/ncurses - sys-libs/readline - afs? ( net-fs/openafs ) - hdb-ldap? ( >=net-nds/openldap-2.3.0 ) - X? ( x11-libs/libX11 - x11-libs/libXau - x11-libs/libXt ) - !!app-crypt/mit-krb5 - !!app-crypt/mit-krb5-appl" - -DEPEND="${RDEPEND} - =dev-lang/python-2* - virtual/pkgconfig - >=sys-devel/autoconf-2.62 - test? ( X? ( ${VIRTUALX_DEPEND} ) )" - -pkg_setup() { - python_set_active_version 2 - python_pkg_setup -} - -src_prepare() { - epatch "${FILESDIR}/heimdal_missing-include.patch" - epatch "${FILESDIR}/heimdal_db5.patch" - epatch "${FILESDIR}/heimdal_disable-check-iprop.patch" - epatch "${FILESDIR}/heimdal_link_order.patch" - eautoreconf -} - -src_configure() { - # QA - append-flags -fno-strict-aliasing - - local myconf="" - if use berkdb; then - myconf="--with-berkeley-db --with-berkeley-db-include=$(db_includedir)" - else - myconf="--without-berkeley-db" - fi - econf \ - --enable-kcm \ - --disable-osfc2 \ - --enable-shared \ - --with-libintl=/usr \ - --with-readline=/usr \ - --with-sqlite3=/usr \ - --libexecdir=/usr/sbin \ - $(use_enable afs afs-support) \ - $(use_enable otp) \ - $(use_enable pkinit kx509) \ - $(use_enable pkinit pk-init) \ - $(use_enable static-libs static) \ - $(use_enable threads pthread-support) \ - $(use_with caps capng) \ - $(use_with hdb-ldap openldap /usr) \ - $(use_with ipv6) \ - $(use_with ssl openssl /usr) \ - $(use_with X x) \ - ${myconf} -} - -src_compile() { - emake -j1 -} - -src_install() { - INSTALL_CATPAGES="no" emake DESTDIR="${D}" install - - dodoc ChangeLog README NEWS TODO - - # Begin client rename and install - for i in {telnetd,ftpd,rshd,popper} - do - mv "${D}"/usr/share/man/man8/{,k}${i}.8 - mv "${D}"/usr/sbin/{,k}${i} - done - - for i in {rcp,rsh,telnet,ftp,su,login,pagsh,kf} - do - mv "${D}"/usr/share/man/man1/{,k}${i}.1 - mv "${D}"/usr/bin/{,k}${i} - done - - mv "${D}"/usr/share/man/man5/{,k}ftpusers.5 - mv "${D}"/usr/share/man/man5/{,k}login.access.5 - - newinitd "${FILESDIR}"/heimdal-kdc.initd-r1 heimdal-kdc - newinitd "${FILESDIR}"/heimdal-kadmind.initd-r1 heimdal-kadmind - newinitd "${FILESDIR}"/heimdal-kpasswdd.initd-r1 heimdal-kpasswdd - newinitd "${FILESDIR}"/heimdal-kcm.initd-r1 heimdal-kcm - - newconfd "${FILESDIR}"/heimdal-kdc.confd heimdal-kdc - newconfd "${FILESDIR}"/heimdal-kadmind.confd heimdal-kadmind - newconfd "${FILESDIR}"/heimdal-kpasswdd.confd heimdal-kpasswdd - newconfd "${FILESDIR}"/heimdal-kcm.confd heimdal-kcm - - insinto /etc - newins "${FILESDIR}"/krb5.conf krb5.conf.example - - if use hdb-ldap; then - insinto /etc/openldap/schema - doins "${S}/lib/hdb/hdb.schema" - fi - - use static-libs || find "${D}"/usr/lib* -name '*.la' -delete - - # default database dir - keepdir /var/heimdal - - # Ugly hack for broken symlink - bug #417081 - rm "${D}"/usr/share/man/man5/qop.5 || die - dosym mech.5 /usr/share/man/man5/qop.5 -} - -pkg_preinst() { - preserve_old_lib /usr/$(get_libdir)/libgssapi.so.2 -} - -pkg_postinst() { - preserve_old_lib_notify /usr/$(get_libdir)/libgssapi.so.2 -} |