From 405325bd568f8b32a9f2318e52419a0ef8b793d8 Mon Sep 17 00:00:00 2001 From: Martin Holzer Date: Thu, 22 Apr 2004 18:12:31 +0000 Subject: Initial ebuild --- net-misc/apt-proxy/apt-proxy-1.3.0.ebuild | 71 +++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 net-misc/apt-proxy/apt-proxy-1.3.0.ebuild (limited to 'net-misc/apt-proxy/apt-proxy-1.3.0.ebuild') diff --git a/net-misc/apt-proxy/apt-proxy-1.3.0.ebuild b/net-misc/apt-proxy/apt-proxy-1.3.0.ebuild new file mode 100644 index 000000000000..93f4c7c9552c --- /dev/null +++ b/net-misc/apt-proxy/apt-proxy-1.3.0.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/apt-proxy/apt-proxy-1.3.0.ebuild,v 1.1 2004/04/22 18:12:31 mholzer Exp $ + + +DESCRIPTION="Caching proxy for the Debian package system" +HOMEPAGE="http://sourceforge.net/projects/apt-proxy/" +SRC_URI="mirror://sourceforge/${PN}/${PN}_${PV}.tar.gz" +LICENSE="GPL-2" +SLOT="0" + +KEYWORDS="~x86" + +IUSE="" + +DEPEND="" +RDEPEND="sys-apps/xinetd + net-misc/rsync + net-misc/wget" + +S=${WORKDIR}/${P} + +pkg_setup () { + enewgroup apt-proxy + enewuser apt-proxy -1 /bin/false /dev/null apt-proxy +} + +src_compile() { + einfo "Applying patch..." + #patch -u apt-proxy < ${FILESDIR}/${P}-sh.patch + epatch ${FILESDIR}/${P}-sh.patch +} + +src_install() { + dosbin apt-proxy + + insinto /etc/apt-proxy ; doins apt-proxy.conf + insinto /etc/xinetd.d ; doins ${FILESDIR}/apt-proxy + + dodoc README INSTALL HISTORY + doman apt-proxy.{8,conf.5} + + # Create the log file with the proper permissions + dodir /var/log + touch ${D}/var/log/apt-proxy.log + fowners apt-proxy:apt-proxy /var/log/apt-proxy.log + + # Create the cache directories and set the proper permissions + dodir /var/cache/apt-proxy + keepdir /var/cache/apt-proxy + fowners apt-proxy:apt-proxy /var/cache/apt-proxy +} + +pkg_postinst() { + einfo "" + einfo "Don't forget to modify the /etc/apt-proxy/apt-proxy.conf" + einfo "file to fit your needs..." + einfo "" + einfo "Also note that apt-proxy is called from running xinetd" + einfo "and you have to enable it first (/etc/xinetd.d/apt-proxy)..." + einfo "" +} + +pkg_postrm() { + einfo "" + einfo "You have to remove the apt-proxy cache by hand. It's located" + einfo "in the \"/var/cache/apt-proxy\" dir..." + einfo "" + einfo "You can also remove the apt-proxy user and group..." + einfo "" +} -- cgit v1.2.3-65-gdbad