diff options
3 files changed, 6 insertions, 59 deletions
diff --git a/app-admin/system-config-bind/ChangeLog b/app-admin/system-config-bind/ChangeLog index 878d3b52a445..48ec1a6c2043 100644 --- a/app-admin/system-config-bind/ChangeLog +++ b/app-admin/system-config-bind/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-admin/system-config-bind -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/system-config-bind/ChangeLog,v 1.4 2007/10/15 09:18:36 dberkholz Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/system-config-bind/ChangeLog,v 1.5 2008/01/31 05:59:56 dberkholz Exp $ + + 31 Jan 2008; Donnie Berkholz <dberkholz@gentoo.org>; + -system-config-bind-4.0.0.ebuild: + Clean up. 15 Oct 2007; Donnie Berkholz <dberkholz@gentoo.org>; system-config-bind-4.0.0.ebuild, system-config-bind-4.0.2.ebuild: diff --git a/app-admin/system-config-bind/files/digest-system-config-bind-4.0.0 b/app-admin/system-config-bind/files/digest-system-config-bind-4.0.0 deleted file mode 100644 index 55299364137c..000000000000 --- a/app-admin/system-config-bind/files/digest-system-config-bind-4.0.0 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 43cc8c396e79a2c2a7a000efb32e621c system-config-bind-4.0.0-44.fc6.src.rpm 9832659 -RMD160 bd109d46674e2a7b41fdbfd6509677482a1da8b1 system-config-bind-4.0.0-44.fc6.src.rpm 9832659 -SHA256 9641464e749c707b65e3c7a0dff6daa2d76fea2018c2e462a6ee31d08a8b9410 system-config-bind-4.0.0-44.fc6.src.rpm 9832659 diff --git a/app-admin/system-config-bind/system-config-bind-4.0.0.ebuild b/app-admin/system-config-bind/system-config-bind-4.0.0.ebuild deleted file mode 100644 index 9222ca991a6f..000000000000 --- a/app-admin/system-config-bind/system-config-bind-4.0.0.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/system-config-bind/system-config-bind-4.0.0.ebuild,v 1.3 2007/10/15 09:18:36 dberkholz Exp $ - -inherit python eutils rpm - -# Tag for which Fedora Core version it's from -FCVER="6" -# Revision of the RPM. Shouldn't affect us, as we're just grabbing the source -# tarball out of it -RPMREV="44" - -DESCRIPTION="The Red Hat BIND DNS Configuration Tool" -HOMEPAGE="http://fedoraproject.org/wiki/SystemConfig/bind" -SRC_URI="mirror://fedora/development/source/SRPMS/${P}-${RPMREV}.fc${FCVER}.src.rpm" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~ppc ~x86" -IUSE="" -RDEPEND="=dev-python/pygtk-2* - dev-lang/python - =dev-python/gnome-python-2* - net-dns/bind - net-dns/bind-tools - net-dns/bind-dns-keygen - x11-themes/hicolor-icon-theme" -DEPEND="${RDEPEND} - sys-devel/gettext - dev-util/intltool" - -src_unpack() { - rpm_src_unpack - cd "${S}" - - # by default it uses /etc/named.conf, not /etc/bind/named.conf - epatch "${FILESDIR}"/${PV}-use-etc-bind-directory.patch -} - -src_install() { - emake ROOT="${D}" install || die "emake install failed" - - make_desktop_entry /usr/bin/${PN} - - fperms 644 /etc/pam.d/{system-config-bind,bindconf} - - # It assumes this file already exists. This is the equivalent - # of /etc/conf.d/named, so this is where arguments to named end up. - dodir /etc/sysconfig - touch "${D}"/etc/sysconfig/named -} - -pkg_postrm() { - python_mod_cleanup /usr/share/${PN} -} |