diff options
author | Daniel Black <dragonheart@gentoo.org> | 2005-01-08 00:46:21 +0000 |
---|---|---|
committer | Daniel Black <dragonheart@gentoo.org> | 2005-01-08 00:46:21 +0000 |
commit | a91953ee48fb8d831a2fb6564c728f32175198bc (patch) | |
tree | 8dcdd5711bafdaeb1d59a68520e8c672e7446af8 | |
parent | Update tests so that grep+glibc dont get stuck in an infinite loop #76879 by ... (diff) | |
download | historical-a91953ee48fb8d831a2fb6564c728f32175198bc.tar.gz historical-a91953ee48fb8d831a2fb6564c728f32175198bc.tar.bz2 historical-a91953ee48fb8d831a2fb6564c728f32175198bc.zip |
Initial import as per bug #76941
-rw-r--r-- | net-dns/updatedd/ChangeLog | 11 | ||||
-rw-r--r-- | net-dns/updatedd/Manifest | 15 | ||||
-rw-r--r-- | net-dns/updatedd/files/digest-updatedd-2.3 | 1 | ||||
-rw-r--r-- | net-dns/updatedd/files/updatedd-2.3-makefile.patch | 118 | ||||
-rw-r--r-- | net-dns/updatedd/metadata.xml | 12 | ||||
-rw-r--r-- | net-dns/updatedd/updatedd-2.3.ebuild | 29 |
6 files changed, 186 insertions, 0 deletions
diff --git a/net-dns/updatedd/ChangeLog b/net-dns/updatedd/ChangeLog new file mode 100644 index 000000000000..9c7208043c01 --- /dev/null +++ b/net-dns/updatedd/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for net-dns/updatedd +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-dns/updatedd/ChangeLog,v 1.1 2005/01/08 00:46:21 dragonheart Exp $ + +*updatedd-2.3 (08 Jan 2005) + + 08 Jan 2005; Daniel Black <dragonheart@gentoo.org> +metadata.xml, + +files/updatedd-2.3-makefile.patch, +updatedd-2.3.ebuild: + Initial import as per bug #76941 by + Lars Geiger <lars.geiger@gmx.net> + diff --git a/net-dns/updatedd/Manifest b/net-dns/updatedd/Manifest new file mode 100644 index 000000000000..73f259d657dc --- /dev/null +++ b/net-dns/updatedd/Manifest @@ -0,0 +1,15 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + +MD5 e792c36b699664645ee3563cc10f05eb updatedd-2.3.ebuild 821 +MD5 6d796b061ed1c1337ef157a5f74dab35 metadata.xml 403 +MD5 8daf0a8060de6c5306102a3a27171d37 ChangeLog 444 +MD5 eb4a7c2c05f74ce62fcb00391abd19d5 files/digest-updatedd-2.3 64 +MD5 82a2354d2d4b5f0fcd5c117f1e7377f7 files/updatedd-2.3-makefile.patch 3527 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.0 (GNU/Linux) + +iD8DBQFB3y1jmdTrptrqvGERAo2FAJ0Tnw6ESKelgdbWNRJsMxxuSulpvgCfVCpB +OMVhcxpDOhhqZxHfOazVEWM= +=43uD +-----END PGP SIGNATURE----- diff --git a/net-dns/updatedd/files/digest-updatedd-2.3 b/net-dns/updatedd/files/digest-updatedd-2.3 new file mode 100644 index 000000000000..fb809f451cc5 --- /dev/null +++ b/net-dns/updatedd/files/digest-updatedd-2.3 @@ -0,0 +1 @@ +MD5 eef61a9238bb1a0964c88743a0438a20 updatedd_2.3.tar.gz 360089 diff --git a/net-dns/updatedd/files/updatedd-2.3-makefile.patch b/net-dns/updatedd/files/updatedd-2.3-makefile.patch new file mode 100644 index 000000000000..5e8df2de0249 --- /dev/null +++ b/net-dns/updatedd/files/updatedd-2.3-makefile.patch @@ -0,0 +1,118 @@ +--- src/Makefile.in.orig 2005-01-08 09:36:54.863238032 +0930 ++++ src/Makefile.in 2005-01-08 09:38:04.867595752 +0930 +@@ -40,10 +40,11 @@ + updatedd.o: updatedd.h + + install: +- $(INSTALL) -m 755 $(bin) $(bindir) ++ $(INSTALL) -d $(DESTDIR)$(bindir) ++ $(INSTALL) -m 755 $(bin) $(DESTDIR)$(bindir) + +- $(INSTALL) -d $(mandir)/man1 +- $(INSTALL) -m 644 updatedd.1 $(mandir)/man1 ++ $(INSTALL) -d $(DESTDIR)$(mandir)/man1 ++ $(INSTALL) -m 644 updatedd.1 $(DESTDIR)$(mandir)/man1 + + uninstall: + $(RM) $(bindir)/$(bin) +--- Documentation/Makefile.in.orig 2005-01-08 09:44:02.846174736 +0930 ++++ Documentation/Makefile.in 2005-01-08 09:44:51.121835720 +0930 +@@ -31,9 +31,9 @@ + rm -f Makefile + + install: +- $(INSTALL) -d $(datadir)/doc/updatedd +- $(INSTALL) updatedd-*.pdf $(datadir)/doc/updatedd +- $(INSTALL) updatedd-pppd-rc $(datadir)/doc/updatedd ++ $(INSTALL) -d $(DESTDIR)$(datadir)/doc/updatedd ++ $(INSTALL) updatedd-*.pdf $(DESTDIR)$(datadir)/doc/updatedd ++ $(INSTALL) updatedd-pppd-rc $(DESTDIR)$(datadir)/doc/updatedd + + uninstall: + $(RM) -r $(datadir)/doc/updatedd +--- ./src/plugins/Makefile.in.orig 2005-01-08 09:46:28.027514976 +0930 ++++ ./src/plugins/Makefile.in 2005-01-08 09:46:52.125721824 +0930 +@@ -41,8 +41,8 @@ + $(LIBERROR) -o $*.so + + install: +- $(INSTALL) -d $(libdir)/updatedd +- $(INSTALL) -m 755 *.so $(libdir)/updatedd ++ $(INSTALL) -d $(DESTDIR)$(libdir)/updatedd ++ $(INSTALL) -m 755 *.so $(DESTDIR)$(libdir)/updatedd + + uninstall: + $(RM) -r $(libdir)/updatedd +--- ./scripts/Makefile.in.orig 2005-01-08 09:47:38.972691872 +0930 ++++ ./scripts/Makefile.in 2005-01-08 09:47:59.305241760 +0930 +@@ -30,8 +30,8 @@ + $(RM) Makefile + + install: +- $(INSTALL) -d $(datadir)/updatedd +- $(INSTALL) *.pl $(datadir)/updatedd ++ $(INSTALL) -d $(DESTDIR)$(datadir)/updatedd ++ $(INSTALL) *.pl $(DESTDIR)$(datadir)/updatedd + + uninstall: + $(RM) -r $(datadir)/updatedd +--- ./updatedd-wrapper/Makefile.in.orig 2005-01-08 09:48:22.544508520 +0930 ++++ ./updatedd-wrapper/Makefile.in 2005-01-08 09:50:04.877951472 +0930 +@@ -37,18 +37,19 @@ + $(RM) Makefile + + install: +- $(INSTALL) -m 755 $(bin) $(bindir) ++ $(INSTALL) -d $(DESTDIR)/$(bindir) ++ $(INSTALL) -m 755 $(bin) $(DESTDIR)$(bindir) + +- if test ! -e $(sysconfdir)/$(conf); then \ +- $(INSTALL) -d $(sysconfdir); \ +- $(INSTALL) -m 600 $(conf) $(sysconfdir); \ ++ if test ! -e $(DESTDIR)$(sysconfdir)/$(conf); then \ ++ $(INSTALL) -d $(DESTDIR)$(sysconfdir); \ ++ $(INSTALL) -m 600 $(conf) $(DESTDIR)$(sysconfdir); \ + fi + +- $(INSTALL) -d $(mandir)/man1 +- $(INSTALL) -d $(mandir)/man5 ++ $(INSTALL) -d $(DESTDIR)$(mandir)/man1 ++ $(INSTALL) -d $(DESTDIR)$(mandir)/man5 + +- $(INSTALL) -m 644 updatedd-wrapper.1 $(mandir)/man1 +- $(INSTALL) -m 644 updatedd-wrapper.conf.5 $(mandir)/man5 ++ $(INSTALL) -m 644 updatedd-wrapper.1 $(DESTDIR)$(mandir)/man1 ++ $(INSTALL) -m 644 updatedd-wrapper.conf.5 $(DESTDIR)$(mandir)/man5 + + uninstall: + $(RM) $(bindir)/$(bin) +--- configure.orig 2005-01-08 09:55:16.094639344 +0930 ++++ configure 2005-01-08 09:55:28.810706208 +0930 +@@ -1959,13 +1959,13 @@ + CFLAGS=$ac_save_CFLAGS + elif test $ac_cv_prog_cc_g = yes; then + if test "$GCC" = yes; then +- CFLAGS="-g -O2" ++ CFLAGS="-g " + else + CFLAGS="-g" + fi + else + if test "$GCC" = yes; then +- CFLAGS="-O2" ++ CFLAGS="" + else + CFLAGS= + fi +@@ -3566,9 +3566,9 @@ + # + + if test "$CC" = "gcc"; then +- CFLAGS="-Wall -Wwrite-strings -O2 $CFLAGS" ++ CFLAGS="-Wall -Wwrite-strings $CFLAGS" + else +- CFLAGS="-O2 $CFLAGS" ++ CFLAGS=" $CFLAGS" + fi + + # ------------------] PERL [ diff --git a/net-dns/updatedd/metadata.xml b/net-dns/updatedd/metadata.xml new file mode 100644 index 000000000000..b9fc2b9c6f11 --- /dev/null +++ b/net-dns/updatedd/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>no-herd</herd> +<maintainer> + <email>dragonheart@gentoo.org</email> + <name>Daniel Black</name> + <description>A user ebuild that I felt obliged to include. Please take over if you want +it</description> +</maintainer> +<longdescription></longdescription> +</pkgmetadata> diff --git a/net-dns/updatedd/updatedd-2.3.ebuild b/net-dns/updatedd/updatedd-2.3.ebuild new file mode 100644 index 000000000000..6fc75e25807e --- /dev/null +++ b/net-dns/updatedd/updatedd-2.3.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dns/updatedd/updatedd-2.3.ebuild,v 1.1 2005/01/08 00:46:21 dragonheart Exp $ + +inherit eutils + +DESCRIPTION="Dynamic DNS client with plugins for several dynamic dns services" +HOMEPAGE="http://updatedd.philipp-benner.de/" +SRC_URI="http://savannah.nongnu.org/download/updatedd/${PN}_${PV}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86 ppc" +IUSE="" + +RDEPEND="virtual/libc" + +src_unpack() { + unpack ${A} + # Fix the Makefile.in so $(bindir) is created before installing files there + cd ${S} + epatch ${FILESDIR}/${P}-makefile.patch || die "Patch Failed" +} + +src_install() { + emake DESTDIR=${D} install || die + mv ${D}/usr/share/doc/updatedd ${D}/usr/share/doc/${PF} + dodoc AUTHORS +} |