diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2006-04-26 10:48:55 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2006-04-26 10:48:55 +0000 |
commit | 13b94c942acd9b2106466f5b19c0ff4eac4c62e1 (patch) | |
tree | f93f4a248224f1ea480c0c7fd1dfde2f9a62ac93 /net-dns | |
parent | New development snapshot. (diff) | |
download | gentoo-2-13b94c942acd9b2106466f5b19c0ff4eac4c62e1.tar.gz gentoo-2-13b94c942acd9b2106466f5b19c0ff4eac4c62e1.tar.bz2 gentoo-2-13b94c942acd9b2106466f5b19c0ff4eac4c62e1.zip |
Removed old versions
(Portage version: 2.1_pre7-r5)
Diffstat (limited to 'net-dns')
-rw-r--r-- | net-dns/mydns/ChangeLog | 6 | ||||
-rw-r--r-- | net-dns/mydns/files/digest-mydns-0.11.0 | 1 | ||||
-rw-r--r-- | net-dns/mydns/files/digest-mydns-1.0.0 | 1 | ||||
-rw-r--r-- | net-dns/mydns/files/mydns.rc6-0.11.0 | 34 | ||||
-rw-r--r-- | net-dns/mydns/mydns-0.11.0.ebuild | 81 | ||||
-rw-r--r-- | net-dns/mydns/mydns-1.0.0.ebuild | 81 |
6 files changed, 5 insertions, 199 deletions
diff --git a/net-dns/mydns/ChangeLog b/net-dns/mydns/ChangeLog index b98ec96dba92..db4cc0437c08 100644 --- a/net-dns/mydns/ChangeLog +++ b/net-dns/mydns/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-dns/mydns # Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/mydns/ChangeLog,v 1.17 2006/03/10 00:33:57 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/mydns/ChangeLog,v 1.18 2006/04/26 10:48:55 matsuu Exp $ + + 26 Apr 2006; MATSUU Takuto <matsuu@gentoo.org> -files/mydns.rc6-0.11.0, + -mydns-0.11.0.ebuild, -mydns-1.0.0.ebuild: + Removed old versions 10 Mar 2006; Aron Griffis <agriffis@gentoo.org> mydns-1.1.0.ebuild: Mark 1.1.0 stable on ia64 diff --git a/net-dns/mydns/files/digest-mydns-0.11.0 b/net-dns/mydns/files/digest-mydns-0.11.0 deleted file mode 100644 index 7456571324c6..000000000000 --- a/net-dns/mydns/files/digest-mydns-0.11.0 +++ /dev/null @@ -1 +0,0 @@ -MD5 16cc087d63c59bdb56f1564d92d6ab0a mydns-0.11.0.tar.bz2 545293 diff --git a/net-dns/mydns/files/digest-mydns-1.0.0 b/net-dns/mydns/files/digest-mydns-1.0.0 deleted file mode 100644 index c38688e43810..000000000000 --- a/net-dns/mydns/files/digest-mydns-1.0.0 +++ /dev/null @@ -1 +0,0 @@ -MD5 3a0b312f53c6a8fb17cb7d2cf27fad24 mydns-1.0.0.tar.bz2 545441 diff --git a/net-dns/mydns/files/mydns.rc6-0.11.0 b/net-dns/mydns/files/mydns.rc6-0.11.0 deleted file mode 100644 index 17d2e9305636..000000000000 --- a/net-dns/mydns/files/mydns.rc6-0.11.0 +++ /dev/null @@ -1,34 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/mydns/files/mydns.rc6-0.11.0,v 1.3 2005/01/15 03:31:00 matsuu Exp $ - -depend() { - need net __db__ - use logger -} - -checkconfig() { - if [ ! -f /etc/mydns.conf ] ; then - eerror "No /etc/mydns.conf file exists!" - return 1 - fi -} - -start() { - ebegin "Starting mydns" - checkconfig || return 1 - start-stop-daemon --start --quiet --exec /usr/sbin/mydns -- -b - eend $? -} - -stop () { - ebegin "Stopping mydns" - PIDFILE=`cat /etc/mydns.conf | grep pidfile | awk '{ print $3 }'` - if [ $PIDFILE == "" ]; then - PIDFILE=/var/run/mydns.pid - fi - start-stop-daemon --stop --quiet \ - --pidfile=${PIDFILE} - eend $? -} diff --git a/net-dns/mydns/mydns-0.11.0.ebuild b/net-dns/mydns/mydns-0.11.0.ebuild deleted file mode 100644 index 39a39f08abf2..000000000000 --- a/net-dns/mydns/mydns-0.11.0.ebuild +++ /dev/null @@ -1,81 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/mydns/mydns-0.11.0.ebuild,v 1.7 2005/09/15 22:53:08 agriffis Exp $ - -DESCRIPTION="A DNS-Server which gets its data from mysql-databases" -HOMEPAGE="http://mydns.bboy.net/" -SRC_URI="http://mydns.bboy.net/download/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha ~amd64 ~hppa ia64 ~ppc ~sparc x86" -IUSE="debug mysql nls postgres ssl static zlib" - -RDEPEND="virtual/libc - ssl? ( dev-libs/openssl ) - zlib? ( sys-libs/zlib ) - || ( - mysql? ( dev-db/mysql ) - postgres? ( dev-db/postgresql ) - !postgres? ( dev-db/mysql ) - )" -DEPEND="${RDEPEND} - sys-devel/bison" - -src_compile() { - local myconf - - if use mysql || ! use postgres; then - myconf="${myconf} --with-mysql" - else - myconf="${myconf} --without-mysql --with-pgsql" - fi - - econf --enable-alias \ - `use_enable nls` \ - `use_enable debug` \ - `use_enable static static-build` \ - `use_with ssl openssl` \ - `use_with zlib` \ - ${myconf} || die - - emake || die -} - -src_install() { - make DESTDIR=${D} install || die - - dodoc ABOUT-NLS AUTHORS BUGS ChangeLog INSTALL NEWS README TODO - - exeinto /etc/init.d; newexe ${FILESDIR}/mydns.rc6-${PV} mydns || die - - if use mysql || ! use postgres; then - sed -i -e 's/__db__/mysql/g' ${D}/etc/init.d/mydns || die - dodoc QUICKSTART.mysql - else - sed -i -e 's/__db__/postgresql/g' ${D}/etc/init.d/mydns || die - dodoc QUICKSTART.postgres - fi -} - -pkg_postinst() { - einfo - einfo "You should now run these commands:" - einfo - einfo "# /usr/sbin/mydns --dump-config > /etc/mydns.conf" - einfo "# chmod 0600 /etc/mydns.conf" - if use mysql || ! use postgres; then - einfo "# mysqladmin -u <useruname> -p create mydns" - einfo "# /usr/sbin/mydns --create-tables | mysql -u <username> -p mydns" - einfo - einfo "to create the tables in the MySQL-Database." - einfo "For more info see QUICKSTART.mysql." - else - einfo "# createdb mydns" - einfo "# /usr/sbin/mydns --create-tables | psql mydns" - einfo - einfo "to create the tables in the PostgreSQL-Database." - einfo "For more info see QUICKSTART.postgres." - fi - einfo -} diff --git a/net-dns/mydns/mydns-1.0.0.ebuild b/net-dns/mydns/mydns-1.0.0.ebuild deleted file mode 100644 index 452e04d66011..000000000000 --- a/net-dns/mydns/mydns-1.0.0.ebuild +++ /dev/null @@ -1,81 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/mydns/mydns-1.0.0.ebuild,v 1.3 2005/12/03 20:06:05 vapier Exp $ - -DESCRIPTION="A DNS-Server which gets its data from mysql-databases" -HOMEPAGE="http://mydns.bboy.net/" -SRC_URI="http://mydns.bboy.net/download/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~hppa ia64 ~ppc ~sparc x86" -IUSE="debug mysql nls postgres ssl static zlib" - -RDEPEND="virtual/libc - ssl? ( dev-libs/openssl ) - zlib? ( sys-libs/zlib ) - || ( - mysql? ( dev-db/mysql ) - postgres? ( dev-db/postgresql ) - !postgres? ( dev-db/mysql ) - )" -DEPEND="${RDEPEND} - sys-devel/bison" - -src_compile() { - local myconf - - if use mysql || ! use postgres; then - myconf="${myconf} --with-mysql" - else - myconf="${myconf} --without-mysql --with-pgsql" - fi - - econf --enable-alias \ - `use_enable nls` \ - `use_enable debug` \ - `use_enable static static-build` \ - `use_with ssl openssl` \ - `use_with zlib` \ - ${myconf} || die - - emake || die -} - -src_install() { - make DESTDIR=${D} install || die - - dodoc ABOUT-NLS AUTHORS BUGS ChangeLog INSTALL NEWS README TODO - - exeinto /etc/init.d; newexe ${FILESDIR}/mydns.rc6 mydns || die - - if use mysql || ! use postgres; then - sed -i -e 's/__db__/mysql/g' ${D}/etc/init.d/mydns || die - dodoc QUICKSTART.mysql - else - sed -i -e 's/__db__/postgresql/g' ${D}/etc/init.d/mydns || die - dodoc QUICKSTART.postgres - fi -} - -pkg_postinst() { - einfo - einfo "You should now run these commands:" - einfo - einfo "# /usr/sbin/mydns --dump-config > /etc/mydns.conf" - einfo "# chmod 0600 /etc/mydns.conf" - if use mysql || ! use postgres; then - einfo "# mysqladmin -u <useruname> -p create mydns" - einfo "# /usr/sbin/mydns --create-tables | mysql -u <username> -p mydns" - einfo - einfo "to create the tables in the MySQL-Database." - einfo "For more info see QUICKSTART.mysql." - else - einfo "# createdb mydns" - einfo "# /usr/sbin/mydns --create-tables | psql mydns" - einfo - einfo "to create the tables in the PostgreSQL-Database." - einfo "For more info see QUICKSTART.postgres." - fi - einfo -} |