diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-03-15 07:57:29 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-03-15 07:57:29 +0000 |
commit | 83ffd9c930cfec8fbac858f236989ddac12756b2 (patch) | |
tree | 9835da3ab5663415c66a10aaba86d764bfe52cdd /net-news | |
parent | header fix (Manifest recommit) (diff) | |
download | gentoo-2-83ffd9c930cfec8fbac858f236989ddac12756b2.tar.gz gentoo-2-83ffd9c930cfec8fbac858f236989ddac12756b2.tar.bz2 gentoo-2-83ffd9c930cfec8fbac858f236989ddac12756b2.zip |
clean older version
Diffstat (limited to 'net-news')
-rw-r--r-- | net-news/inn/ChangeLog | 7 | ||||
-rw-r--r-- | net-news/inn/files/digest-inn-2.3.3 | 1 | ||||
-rw-r--r-- | net-news/inn/inn-2.3.3.ebuild | 75 |
3 files changed, 5 insertions, 78 deletions
diff --git a/net-news/inn/ChangeLog b/net-news/inn/ChangeLog index 75beb388c740..c1bf5f2fa4df 100644 --- a/net-news/inn/ChangeLog +++ b/net-news/inn/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-news/inn -# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-news/inn/ChangeLog,v 1.7 2003/12/08 05:48:57 mr_bones_ Exp $ +# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-news/inn/ChangeLog,v 1.8 2004/03/15 07:57:29 mr_bones_ Exp $ + + 14 Mar 2004; Michael Sterrett <mr_bones_@gentoo.org> inn-2.3.3.ebuild: + clean older version 07 Dec 2003; Michael Sterrett <mr_bones_@gentoo.org> inn-2.3.5.ebuild: chown x.y -> chown x:y (bug 35127) diff --git a/net-news/inn/files/digest-inn-2.3.3 b/net-news/inn/files/digest-inn-2.3.3 deleted file mode 100644 index cf98e1894daf..000000000000 --- a/net-news/inn/files/digest-inn-2.3.3 +++ /dev/null @@ -1 +0,0 @@ -MD5 97080ce1dcdc5fe8f3dacd230c9d4a0a inn-2.3.3.tar.gz 1413433 diff --git a/net-news/inn/inn-2.3.3.ebuild b/net-news/inn/inn-2.3.3.ebuild deleted file mode 100644 index 0052c21dc2c0..000000000000 --- a/net-news/inn/inn-2.3.3.ebuild +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-news/inn/inn-2.3.3.ebuild,v 1.8 2003/06/12 22:03:44 msterret Exp $ - -IUSE="ssl tcltk" - -S=${WORKDIR}/${P} -DESCRIPTION="The Internet News daemon, fully featured NNTP server" -SRC_URI="ftp://ftp.isc.org/isc/inn/${P}.tar.gz" -HOMEPAGE="http://www.isc.org/products/INN" - -SLOT="0" -LICENSE="as-is BSD" -KEYWORDS="x86" - -DEPEND="app-crypt/gnupg - tcltk? ( dev-lang/tcl ) - ssl? ( dev-libs/openssl )" - -src_compile() { - local myconf - use tcltk && myconf="${myconf} --with-tcl" - use ssl && myconf="${myconf} --with-openssl" - - ./configure --prefix=/usr/lib/news \ - --libexecdir=/usr/lib/awk \ - --mandir=/usr/share/man \ - --infodir=/usr/share/info \ - --with-etc-dir=/etc/news \ - --with-db-dir=/var/spool/news \ - --with-spool-dir=/var/spool/news \ - --with-log-dir=/var/log/news \ - --with-run-dir=/var/run \ - --with-tmp-path=/tmp \ - --host=${CHOST} \ - --enable-libtool \ - --enable-tagged-hash \ - --with-gnu-ld \ - --with-perl --with-python \ - ${myconf} || die - - OLD_P=${P} - unset P - make || die - P=${OLD_P} -} - -src_install() { - OLD_P=${P} - unset P - make prefix=${D}/usr/lib/news \ - PATHETC=${D}/etc/news \ - PATHMAN=${D}/usr/share/man \ - PATHLIB=${D}/usr/lib/news/lib \ - PATHCONTROL=${D}/usr/lib/news/bin/control \ - PATHFILTER=${D}/usr/lib/news/bin/filter \ - PATHRUN=${D}/var/run \ - PATHLOG=${D}/var/log/news \ - PATHDB=${D}/var/spool/news \ - PATHSPOOL=${D}/var/spool/news \ - PATHTMP=${D}/tmp \ - MAN1=${D}/usr/share/man/man1 \ - MAN3=${D}/usr/share/man/man3 \ - MAN5=${D}/usr/share/man/man5 \ - MAN8=${D}/usr/share/man/man8 \ - install || die - P=${OLD_P} - - dodoc CONTRIBUTORS ChangeLog HACKING HISTORY INSTALL LICENSE - dodoc MANIFEST NEWS README* - dodoc doc/control-messages doc/sample-control - - dodir /etc/init.d - cp ${FILESDIR}/innd ${D}/etc/init.d -} |