commit:     4067bf8d84bb9ae10d1fd04cb5661a83555fde35
Author:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Mon Jul  4 07:16:45 2016 +0000
Commit:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Mon Jul  4 07:18:42 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4067bf8d

net-misc/apt-cacher-ng: Old.

Package-Manager: portage-2.3.0

 net-misc/apt-cacher-ng/Manifest                   |   1 -
 net-misc/apt-cacher-ng/apt-cacher-ng-0.9.2.ebuild | 117 ----------------------
 2 files changed, 118 deletions(-)

diff --git a/net-misc/apt-cacher-ng/Manifest b/net-misc/apt-cacher-ng/Manifest
index 77c8449..94f281c 100644
--- a/net-misc/apt-cacher-ng/Manifest
+++ b/net-misc/apt-cacher-ng/Manifest
@@ -1,3 +1,2 @@
-DIST apt-cacher-ng_0.9.2.orig.tar.xz 303628 SHA256 
926552658a4080c973335b20e2dc7066627a366e9728d28f5777b6630b09e072 SHA512 
6e43f17a091e091f174665439cf2545c2859689e80ab7a67cf4ff1da57910336864cca024d0bd17e424fe021221259df9ed9a365ada9df2c6e4e7b5f5ea6749b
 WHIRLPOOL 
2fc1875b9f4ea54db253a7258fd9a745ec2308d7f180ec0b4e8b8de98677f5c6fddf3f8fcc88e7c5165661c98d3c2b34ef45b27c0b6286d601f6d3679d711bb4
 DIST apt-cacher-ng_0.9.3.1.orig.tar.xz 307092 SHA256 
2817fe4089f40029bd83f5739a69ecbef9d10cc8944294df865d06faf635de4b SHA512 
2fc3bd6cf8298fccf04f583ce63cf1c6daf24a649ddb13b061bef15172d6e1c211293e552d79d40391aa0cb30d9a8810c66fb2ff379f5cc251974ed759fe7f07
 WHIRLPOOL 
2594033999c593fe81f016c044086696bde9ab0b26156cfbc6f453f1a4b18baecdedb0c7ed3ab7c9522bbf53a4557290756333c9a6eca95e8bc4857d2e8f04aa
 DIST apt-cacher-ng_0.9.3.orig.tar.xz 306284 SHA256 
8f3b3b0e0937eb6ef65e5d0a982beacddb2f1c75989a0dde4d3760f078a0a7ad SHA512 
7b8d71e4b7d436c2f38fb8f0e2ad8e929f39db47e276be91af7250509020fdee07d5cb1c5852db25fb725bd11953729c8059ad9f8f897d12b5263942b93476b6
 WHIRLPOOL 
cc3f550bfbbf5c9ba27423fd47bba393277fa6830e214aaa23376622e3386c6dbcb927fcef6c86ab67579325e1a873e24ca9888f23bdfdbbb8a4549ef5fda699

diff --git a/net-misc/apt-cacher-ng/apt-cacher-ng-0.9.2.ebuild 
b/net-misc/apt-cacher-ng/apt-cacher-ng-0.9.2.ebuild
deleted file mode 100644
index fa56771..0000000
--- a/net-misc/apt-cacher-ng/apt-cacher-ng-0.9.2.ebuild
+++ /dev/null
@@ -1,117 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit cmake-utils eutils toolchain-funcs user
-
-DESCRIPTION="Yet another implementation of an HTTP proxy for Debian/Ubuntu 
software packages written in C++"
-HOMEPAGE="
-       http://www.unix-ag.uni-kl.de/~bloch/acng/
-       http://packages.qa.debian.org/a/apt-cacher-ng.html
-"
-LICENSE="BSD-4 ZLIB public-domain"
-SLOT="0"
-SRC_URI="mirror://debian/pool/main/a/${PN}/${PN}_${PV}.orig.tar.xz"
-
-KEYWORDS="~amd64 ~x86"
-IUSE="doc fuse systemd tcpd"
-
-COMMON_DEPEND="
-       app-arch/bzip2
-       app-arch/xz-utils
-       sys-libs/zlib
-       systemd? (
-               sys-apps/systemd
-       )
-"
-DEPEND="
-       ${COMMON_DEPEND}
-       dev-util/cmake
-       >sys-devel/gcc-4.8
-       virtual/pkgconfig
-"
-RDEPEND="
-       ${COMMON_DEPEND}
-       dev-lang/perl
-       fuse? ( sys-fs/fuse )
-       tcpd? ( sys-apps/tcp-wrappers )
-"
-
-S=${WORKDIR}/${P/_}
-
-pkg_pretend() {
-       if [[ $(gcc-major-version) -lt 4 ]]; then
-               die "GCC 4.8 or greater is required but you have 
$(gcc-major-version).$(gcc-minor-version)"
-       elif [[ $(gcc-major-version) = 4 ]] && [[ $(gcc-minor-version) -lt 8 
]]; then
-               die "GCC 4.8 or greater is required but you have 
$(gcc-major-version).$(gcc-minor-version)"
-       fi
-}
-
-pkg_setup() {
-       # add new user & group for daemon
-       enewgroup ${PN}
-       enewuser ${PN} -1 -1 -1 ${PN}
-}
-
-src_configure(){
-       mycmakeargs="-DCMAKE_INSTALL_PREFIX=/usr"
-       if use fuse; then
-               mycmakeargs="-DHAVE_FUSE_25=yes ${mycmakeargs}"
-       else
-               mycmakeargs="-DHAVE_FUSE_25=no ${mycmakeargs}"
-       fi
-       if use tcpd; then
-               mycmakeargs="-DHAVE_LIBWRAP=yes ${mycmakeargs}"
-       else
-               mycmakeargs="-DHAVE_LIBWRAP=no ${mycmakeargs}"
-       fi
-
-       cmake-utils_src_configure
-}
-
-src_install() {
-       pushd ${CMAKE_BUILD_DIR}
-       dosbin ${PN}
-       if use fuse; then
-               dobin acngfs
-       fi
-       popd
-
-       newinitd "${FILESDIR}"/initd-r1 ${PN}
-       newconfd "${FILESDIR}"/confd ${PN}
-
-       insinto /etc/logrotate.d
-       newins "${FILESDIR}"/logrotate ${PN}
-
-       doman doc/man/${PN}*
-       if use fuse; then
-               doman doc/man/acngfs*
-       fi
-
-       # Documentation
-       dodoc README TODO VERSION INSTALL ChangeLog
-       if use doc; then
-               dodoc doc/*.pdf
-               dohtml doc/html/*
-               docinto examples/conf
-               dodoc conf/*
-       fi
-
-       # perl daily cron script
-       dosbin scripts/expire-caller.pl
-       exeinto /etc/cron.daily
-       newexe "${FILESDIR}"/cron.daily ${PN}
-
-       # default configuration
-       insinto /etc/${PN}
-       newins "${CMAKE_BUILD_DIR}"/conf/acng.conf ${PN}.conf
-       doins $( echo conf/* | sed 's|conf/acng.conf.in||g' )
-
-       keepdir /var/log/${PN}
-       # Some directories must exists
-       keepdir /var/log/${PN}
-       fowners -R ${PN}:${PN} \
-               /etc/${PN} \
-               /var/log/${PN}
-}

Reply via email to