diff options
author | Michael Palimaka <kensington@gentoo.org> | 2012-09-09 16:14:53 +0000 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2012-09-09 16:14:53 +0000 |
commit | ee5b8acc426822fb38ec178b317c9a20e9e695a5 (patch) | |
tree | 3b473a281159f1ba6e26534be2b213bfc36de479 /www-servers/publicfile | |
parent | alpha/ia64/s390/sh/sparc stable wrt #418803 (diff) | |
download | gentoo-2-ee5b8acc426822fb38ec178b317c9a20e9e695a5.tar.gz gentoo-2-ee5b8acc426822fb38ec178b317c9a20e9e695a5.tar.bz2 gentoo-2-ee5b8acc426822fb38ec178b317c9a20e9e695a5.zip |
Remove old.
(Portage version: 2.1.11.13/cvs/Linux x86_64)
Diffstat (limited to 'www-servers/publicfile')
-rw-r--r-- | www-servers/publicfile/ChangeLog | 6 | ||||
-rw-r--r-- | www-servers/publicfile/publicfile-0.52-r1.ebuild | 64 |
2 files changed, 5 insertions, 65 deletions
diff --git a/www-servers/publicfile/ChangeLog b/www-servers/publicfile/ChangeLog index 1a2624d1f31e..1af59597f556 100644 --- a/www-servers/publicfile/ChangeLog +++ b/www-servers/publicfile/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for www-servers/publicfile # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/publicfile/ChangeLog,v 1.23 2012/09/09 15:57:25 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-servers/publicfile/ChangeLog,v 1.24 2012/09/09 16:14:53 kensington Exp $ + + 09 Sep 2012; Michael Palimaka <kensington@gentoo.org> + -publicfile-0.52-r1.ebuild: + Remove old. 09 Sep 2012; Raúl Porcel <armin76@gentoo.org> publicfile-0.52-r1.ebuild, publicfile-0.52-r3.ebuild: diff --git a/www-servers/publicfile/publicfile-0.52-r1.ebuild b/www-servers/publicfile/publicfile-0.52-r1.ebuild deleted file mode 100644 index 262977619395..000000000000 --- a/www-servers/publicfile/publicfile-0.52-r1.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/publicfile/publicfile-0.52-r1.ebuild,v 1.11 2012/09/09 15:57:25 armin76 Exp $ - -inherit eutils - -IUSE="selinux" -DESCRIPTION="publish files through FTP and HTTP" -HOMEPAGE="http://cr.yp.to/publicfile.html" -SRC_URI="http://cr.yp.to/publicfile/${P}.tar.gz - http://www.ohse.de/uwe/patches/${P}-filetype-diff - http://www.publicfile.org/ftp-ls-patch" -SLOT="0" -LICENSE="as-is" -KEYWORDS="~amd64 hppa ppc x86" - -RDEPEND="virtual/daemontools - >=sys-apps/ucspi-tcp-0.83 - selinux? ( sec-policy/selinux-publicfile ) - !net-ftp/netkit-ftpd" - -src_unpack() { - unpack publicfile-0.52.tar.gz - - # filetypes in env using daemontools - cd "${S}" - epatch "${DISTDIR}"/${P}-filetype-diff - - # "normal" ftp listing - epatch "${DISTDIR}"/ftp-ls-patch - - echo "gcc ${CFLAGS}" > conf-cc - echo "gcc" > conf-ld - echo "/usr" > conf-home - - # fix for glibc-2.3.2 errno issue - sed -i -e 's|extern int errno;|#include <errno.h>|' error.h -} - -src_compile() { - emake || die "emake failed" -} - -src_install() { - exeinto /usr/bin - doexe ftpd httpd - newexe configure publicfile-conf - dodoc CHANGES FILES README SYSDEPS TARGETS TODO VERSION -} - -pkg_preinst() { - enewgroup nofiles - enewuser ftp -1 -1 /home/public nofiles - enewuser ftplog -1 -1 /home/public nofiles -} - -pkg_postinst() { - /usr/bin/publicfile-conf ftp ftplog /home/public `hostname` - echo - einfo "httpd and ftpd are serving out of /home/public." - einfo "remember to start the servers with:" - einfo " ln -s /home/public/httpd /home/public/ftpd /service" - echo -} |