From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 4.0.0 (2022-12-14) on finch.gentoo.org X-Spam-Level: X-Spam-Status: No, score=0.5 required=5.0 tests=DATE_IN_PAST_06_12, INVALID_DATE,MAILING_LIST_MULTI,NO_RELAYS autolearn=no autolearn_force=no version=4.0.0 Received: from pm by cvs.gentoo.org with local (Exim 3.30 #1) id 15NWXt-00055c-00 for gentoo-dev@gentoo.org; Fri, 20 Jul 2001 03:26:05 -0600 From: Parag Mehta To: gentoo-dev Message-ID: <20010720032605.A19555@cvs.gentoo.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="LZvS9be/3tNcYl/X" Content-Disposition: inline User-Agent: Mutt/1.2.5i Subject: [gentoo-dev] new ebuilds Sender: gentoo-dev-admin@cvs.gentoo.org Errors-To: gentoo-dev-admin@cvs.gentoo.org X-BeenThere: gentoo-dev@cvs.gentoo.org X-Mailman-Version: 2.0 Precedence: bulk Reply-To: gentoo-dev@cvs.gentoo.org List-Help: List-Post: List-Subscribe: , List-Id: Gentoo Linux development list List-Unsubscribe: , List-Archive: Date: Fri Jul 20 03:27:02 2001 X-Original-Date: Fri, 20 Jul 2001 03:26:05 -0600 X-Archives-Salt: 6a1e17f6-80f4-4a8d-87eb-784d505e0fe1 X-Archives-Hash: 634b6d9e7b845504b89eae6ccc106f95 --LZvS9be/3tNcYl/X Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi, can somebody with cvs access commit the attaached the ebuilds for me, please. the nmap ebuild has been modifed as per suggestions recvd. from ben & achim. the pure-ftpd ebuild is for the new release of the app and recommended one. regards, pm -- Gentoo Linux Developer --LZvS9be/3tNcYl/X Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="nmap-2.54_beta26.ebuild" # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Parag Mehta P=nmap-2.54BETA26 A=${P}.tgz S=${WORKDIR}/${P} DESCRIPTION="Portscanner" SRC_URI="http://www.insecure.org/nmap/dist/"${A} HOMEPAGE="http://www.insecure.org/nmap/" DEPEND="virtual/glibc gtk? ( >=x11-libs/gtk+-1.2.8 )" src_compile() { try ./configure --host=${CHOST} --prefix=/usr --mandir=/usr/share/man --enable-ipv6 if [ "`use gtk`" ] ; then try make else try make nmap fi } src_install() { try make prefix=${D}/usr mandir=${D}/usr/share/man install dodoc CHANGELOG COPYING HACKING README* cd docs dodoc *.txt insinto /usr/share/doc/${PF}/html doins *.html } --LZvS9be/3tNcYl/X Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="pure-ftpd-0.98.8.ebuild" # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Parag Mehta A=${P}.tar.gz S=${WORKDIR}/${P} DESCRIPTION="A Fast Production Quality FTP Server - Bug fixes backported from 0.99 . No new feature. Use this version on production servers." SRC_URI="http://prdownloads.sourceforge.net/pureftpd/${A}" HOMEPAGE="http://pureftpd.sourceforge.net" DEPEND=">=sys-libs/glibc-2.1.3 >=sys-libs/pam-0.75" src_compile() { cd ${S} try ./configure --prefix=/usr --with-throttling --with-virtualhosts\ --with-ratios --with-largefile try make } src_install () { cd ${S} try make DESTDIR=${D} install dodoc COPYING ChangeLog README README.Configuration-File dodoc README.Contrib README.LDAP README.Netfilter dodir /etc/pure-ftpd echo "Please do no forget to run, the following syntax :" echo "ebuild pure-ftpd-0.98.8.ebuild config" echo "This will add the necessary post install config to your system." } pkg_config() { echo "This config script will add pftpd lines to your /etc/xinetd.conf." echo "Press control-C to abort, hit Enter to continue." echo read cat ${FILESDIR}/pftpd.inetd >> ${ROOT}etc/inetd.conf ln -s /dev/null /etc/pure-ftpd/127.0.0.1 /etc/rc.d/init.d/svc-xinetd restart echo "Modifications applied." } --LZvS9be/3tNcYl/X--