summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJörg Bornkessel <hd_brummy@gentoo.org>2010-09-18 21:47:20 +0000
committerJörg Bornkessel <hd_brummy@gentoo.org>2010-09-18 21:47:20 +0000
commit213a72052cfb7690d52df27216c2a6f09e1c01a3 (patch)
tree6730c8ac371b8338ca2a0abcf146d6a60c2542d1 /media-plugins/vdr-epgsearch/vdr-epgsearch-0.9.24.ebuild
parentAutomated update of use.local.desc (diff)
downloadgentoo-2-213a72052cfb7690d52df27216c2a6f09e1c01a3.tar.gz
gentoo-2-213a72052cfb7690d52df27216c2a6f09e1c01a3.tar.bz2
gentoo-2-213a72052cfb7690d52df27216c2a6f09e1c01a3.zip
version bump
(Portage version: 2.1.8.3/cvs/Linux i686)
Diffstat (limited to 'media-plugins/vdr-epgsearch/vdr-epgsearch-0.9.24.ebuild')
-rw-r--r--media-plugins/vdr-epgsearch/vdr-epgsearch-0.9.24.ebuild70
1 files changed, 0 insertions, 70 deletions
diff --git a/media-plugins/vdr-epgsearch/vdr-epgsearch-0.9.24.ebuild b/media-plugins/vdr-epgsearch/vdr-epgsearch-0.9.24.ebuild
deleted file mode 100644
index b0a760fc1a7e..000000000000
--- a/media-plugins/vdr-epgsearch/vdr-epgsearch-0.9.24.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-epgsearch/vdr-epgsearch-0.9.24.ebuild,v 1.4 2009/03/21 17:43:18 zzam Exp $
-
-inherit vdr-plugin
-
-DESCRIPTION="Video Disk Recorder epgsearch plugin"
-HOMEPAGE="http://winni.vdr-developer.org/epgsearch"
-
-case ${P#*_} in
- rc*|beta*)
- MY_P="${P/_/.}"
- SRC_URI="http://winni.vdr-developer.org/epgsearch/downloads/beta/${MY_P}.tgz"
- S="${WORKDIR}/${MY_P#vdr-}"
- ;;
- *)
- SRC_URI="http://winni.vdr-developer.org/epgsearch/downloads/${P}.tgz"
- ;;
-esac
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="pcre"
-
-DEPEND=">=media-video/vdr-1.3.45
- pcre? ( dev-libs/libpcre )"
-RDEPEND="${DEPEND}"
-
-PATCHES=("${FILESDIR}/${P}-langinfo.diff")
-
-src_unpack() {
- vdr-plugin_src_unpack
-
- cd "${S}"
- fix_vdr_libsi_include conflictcheck.c
-
- use pcre && sed -i Makefile -e 's/^#HAVE_PCREPOSIX/HAVE_PCREPOSIX/'
-}
-
-src_install() {
- vdr-plugin_src_install
- diropts "-m755 -o vdr -g vdr"
- keepdir /etc/vdr/plugins/epgsearch
-
- cd "${S}"
- emake install-doc MANDIR="${D}/usr/share/man"
- dodoc MANUAL
-}
-
-pkg_preinst() {
- has_version "<${CATEGORY}/${PN}-0.9.18"
- previous_less_than_0_9_18=$?
-}
-
-pkg_postinst() {
- vdr-plugin_pkg_postinst
- if [[ $previous_less_than_0_9_18 = 0 ]] ; then
- elog "Moving config-files to new location /etc/vdr/plugins/epgsearch"
- cd "${ROOT}"/etc/vdr/plugins
- local f
- local moved=""
- for f in epgsearch*.* .epgsearch*; do
- [[ -e ${f} ]] || continue
- mv "${f}" "${ROOT}/etc/vdr/plugins/epgsearch"
- moved="${moved} ${f}"
- done
- elog "These files were moved:${moved}"
- fi
-}