# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Maintainer: Scott Moynes # /space/gentoo/cvsroot/gentoo-x86/skel.ebuild,v 1.3 2002/02/04 15:46:51 gbevin Exp # NOTE: The comments in this file are for instruction and # documentation. They're not meant to appear with your final, # production ebuild. Please remember to remove them before submitting # or committing your ebuild. That doesn't mean you can't add your own # comments though. # Remember to add the proper Author line, above. # The 'Header' on the fourth line should just be left alone. # When your ebuild will be commited to cvs, the details on that line will # be automatically generated to contain the correct data. # Source directory; the dir where the sources can be found # (automatically unpacked) inside ${WORKDIR}. Usually you can just # leave this as-is. S=${WORKDIR} # Short one-line description of this package. DESCRIPTION="The No-Brainer SMTP" # Point to any required sources; these will be automatically # downloaded by Portage. SRC_URI="http://physeeks.dyndns.org:8000/download/${P}.tgz" # Homepage, not used by Portage directly but handy for developer reference HOMEPAGE="http://physeeks.dyndns.org:8000/software.html" DEPEND="virtual/glibc" PROVIDE="virtual/mta" src_compile() { gcc ${CFLAGS} -o nbsmtp nbsmtp.c|| die } src_install () { dobin nbsmtp dodoc COPYING }