diff options
author | Sergey Popov <pinkbyte@gentoo.org> | 2013-04-26 08:59:24 +0000 |
---|---|---|
committer | Sergey Popov <pinkbyte@gentoo.org> | 2013-04-26 08:59:24 +0000 |
commit | cd5e9abb874081c2858b5d86c81ec26df759307e (patch) | |
tree | 3f4e9185091bd32abd9bf5253ac1b65544e8df0b /net-dialup | |
parent | Respect AR, wrt bug #467222. Thanks to Agostino Sarubbo for discovering this ... (diff) | |
download | gentoo-2-cd5e9abb874081c2858b5d86c81ec26df759307e.tar.gz gentoo-2-cd5e9abb874081c2858b5d86c81ec26df759307e.tar.bz2 gentoo-2-cd5e9abb874081c2858b5d86c81ec26df759307e.zip |
Drop old revision
(Portage version: 2.2.0_alpha173/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
Diffstat (limited to 'net-dialup')
-rw-r--r-- | net-dialup/capisuite/ChangeLog | 5 | ||||
-rw-r--r-- | net-dialup/capisuite/capisuite-0.4.5-r6.ebuild | 97 |
2 files changed, 4 insertions, 98 deletions
diff --git a/net-dialup/capisuite/ChangeLog b/net-dialup/capisuite/ChangeLog index a5532f1adeeb..92061d3d34ec 100644 --- a/net-dialup/capisuite/ChangeLog +++ b/net-dialup/capisuite/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-dialup/capisuite # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/capisuite/ChangeLog,v 1.47 2013/04/26 08:58:35 pinkbyte Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/capisuite/ChangeLog,v 1.48 2013/04/26 08:59:24 pinkbyte Exp $ + + 26 Apr 2013; Sergey Popov <pinkbyte@gentoo.org> -capisuite-0.4.5-r6.ebuild: + Drop old revision 26 Apr 2013; Sergey Popov <pinkbyte@gentoo.org> capisuite-0.4.5-r7.ebuild, +files/capisuite-0.4.5-respect-ar.patch: diff --git a/net-dialup/capisuite/capisuite-0.4.5-r6.ebuild b/net-dialup/capisuite/capisuite-0.4.5-r6.ebuild deleted file mode 100644 index 334c02677c2a..000000000000 --- a/net-dialup/capisuite/capisuite-0.4.5-r6.ebuild +++ /dev/null @@ -1,97 +0,0 @@ -# Copyright 1999-2013 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-r6.ebuild,v 1.7 2013/04/01 16:33:23 pinkbyte Exp $ - -inherit eutils autotools flag-o-matic multilib python - -DESCRIPTION="ISDN telecommunication suite providing fax and voice services" -HOMEPAGE="http://www.capisuite.org" -SRC_URI="http://www.capisuite.org/${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" - - # Compability with current SOX (bug #250320) - epatch "${FILESDIR}/${P}-sox.patch" - - # Compatibility with automake >= 1.11.2 (bug #424892) - epatch "${FILESDIR}/${P}-automake-1.11.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 -} |