summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Popov <pinkbyte@gentoo.org>2013-04-01 13:46:20 +0000
committerSergey Popov <pinkbyte@gentoo.org>2013-04-01 13:46:20 +0000
commit35fa762b9fb4758a360f31c7b403f457f6d06aa6 (patch)
treeb44e2bf1a0363297a973eb3ec5039a22fee1425e /net-dialup
parentRevision bump: fix QA issues, bump to EAPI 5, add epatch_user, respect LDFLAG... (diff)
downloadgentoo-2-35fa762b9fb4758a360f31c7b403f457f6d06aa6.tar.gz
gentoo-2-35fa762b9fb4758a360f31c7b403f457f6d06aa6.tar.bz2
gentoo-2-35fa762b9fb4758a360f31c7b403f457f6d06aa6.zip
Drop old revision
(Portage version: 2.2.0_alpha170/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
Diffstat (limited to 'net-dialup')
-rw-r--r--net-dialup/capisuite/ChangeLog7
-rw-r--r--net-dialup/capisuite/capisuite-0.4.5-r5.ebuild94
2 files changed, 5 insertions, 96 deletions
diff --git a/net-dialup/capisuite/ChangeLog b/net-dialup/capisuite/ChangeLog
index e898de8483e0..8024fd16fc78 100644
--- a/net-dialup/capisuite/ChangeLog
+++ b/net-dialup/capisuite/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-dialup/capisuite
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dialup/capisuite/ChangeLog,v 1.39 2011/04/05 05:45:47 ulm Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-dialup/capisuite/ChangeLog,v 1.40 2013/04/01 13:46:20 pinkbyte Exp $
+
+ 01 Apr 2013; Sergey Popov <pinkbyte@gentoo.org> -capisuite-0.4.5-r5.ebuild:
+ Drop old revision
05 Apr 2011; Ulrich Mueller <ulm@gentoo.org> capisuite-0.4.5-r5.ebuild,
capisuite-0.4.5-r6.ebuild:
diff --git a/net-dialup/capisuite/capisuite-0.4.5-r5.ebuild b/net-dialup/capisuite/capisuite-0.4.5-r5.ebuild
deleted file mode 100644
index 07e754a3e355..000000000000
--- a/net-dialup/capisuite/capisuite-0.4.5-r5.ebuild
+++ /dev/null
@@ -1,94 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-dialup/capisuite/capisuite-0.4.5-r5.ebuild,v 1.5 2011/04/05 05:45:46 ulm Exp $
-
-WANT_AUTOCONF="latest"
-WANT_AUTOMAKE="latest"
-
-inherit eutils autotools flag-o-matic multilib python
-
-DESCRIPTION="ISDN telecommunication suite providing fax and voice services"
-HOMEPAGE="http://www.capisuite.de"
-SRC_URI="http://www.capisuite.de/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-IUSE=""
-
-DEPEND="dev-lang/python
- media-sound/sox
- >=media-libs/tiff-3.7.1
- media-gfx/jpeg2ps
- media-gfx/sfftobmp
- app-text/ghostscript-gpl
- net-dialup/capi4k-utils"
-RDEPEND="${DEPEND}
- virtual/mta"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- epatch "${FILESDIR}/${P}-as-needed.patch"
-
- # taken from capisuite-0.4.5-5.src.rpm (SuSE-9.3)
- epatch "${FILESDIR}/${P}-capi4linux_v3.diff"
-
- # patched scripts/cs_helpers.pyin (bug #96540)
- epatch "${FILESDIR}/${P}-date-header.patch"
-
- # patched src/backend/connection.cpp (bug #69522)
- epatch "${FILESDIR}/${PN}-fax-compatibility.patch"
-
- # patched scripts/{incoming,idle}.py (bug #147854)
- epatch "${FILESDIR}/${P}-syntax.patch"
-
- # GCC 4.3 patches (bug #236777)
- epatch "${FILESDIR}/${P}-gcc43.patch"
-
- # Python 2.5 patches (bug #232734)
- epatch "${FILESDIR}/${P}-python25.patch"
-
- # run autotools
- eautoreconf
-}
-
-src_compile() {
- strip-flags # see bug #90901
-
- econf --localstatedir=/var \
- --with-docdir="/usr/share/doc/${PF}" || die "econf failed"
- emake || die "emake failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "install failed."
-
- rm -f "${D}"/usr/{lib,share}/capisuite/README
- rmdir -p --ignore-fail-on-non-empty "${D}/var/log"
- rm -f "${D}/usr/share/doc/${PF}"/{COPYING,manual.pdf}
- keepdir /var/spool/capisuite/{done,failed,sendq,users}
-
- dodir /etc/init.d
- newinitd "${FILESDIR}/capisuite.initd" capisuite
-
- insinto /etc/logrotate.d
- newins "${FILESDIR}/capisuite.logrotated" capisuite
-
- dodoc AUTHORS ChangeLog NEWS README TODO
-
- exeinto /etc/cron.daily
- doexe capisuite.cron
-
- insinto /etc/capisuite
- doins cronjob.conf
-}
-
-pkg_postinst() {
- python_mod_optimize $(python_get_sitedir)/cs_helpers.py
-}
-
-pkg_postrm() {
- python_mod_cleanup $(python_get_sitedir)/cs_helpers.py
-}