| 1 | # Copyright 1999-2005 Gentoo Foundation |
1 | # Copyright 1999-2011 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.22 2006/06/17 14:51:32 zzam Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.77 2011/12/31 01:01:56 hd_brummy Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: |
5 | # Author: |
| 6 | # Matthias Schwarzott <zzam@gentoo.org> |
6 | # Matthias Schwarzott <zzam@gentoo.org> |
|
|
7 | # Joerg Bornkessel <hd_brummy@gentoo.org> |
| 7 | |
8 | |
| 8 | # vdr-plugin.eclass |
9 | # vdr-plugin.eclass |
| 9 | # |
10 | # |
| 10 | # eclass to create ebuilds for vdr plugins |
11 | # eclass to create ebuilds for vdr plugins |
| 11 | # |
12 | # |
| 12 | |
13 | |
| 13 | # Example ebuild (vdr-femon): |
14 | # Example ebuild (basic version without patching): |
| 14 | # |
15 | # |
|
|
16 | # EAPI="2" |
| 15 | # inherit vdr-plugin |
17 | # inherit vdr-plugin |
| 16 | # IUSE="" |
18 | # IUSE="" |
| 17 | # SLOT="0" |
19 | # SLOT="0" |
| 18 | # DESCRIPTION="vdr Plugin: DVB Frontend Status Monitor (signal strengt/noise)" |
20 | # DESCRIPTION="vdr Plugin: DVB Frontend Status Monitor (signal strengt/noise)" |
| 19 | # HOMEPAGE="http://www.saunalahti.fi/~rahrenbe/vdr/femon/" |
21 | # HOMEPAGE="http://www.saunalahti.fi/~rahrenbe/vdr/femon/" |
| 20 | # SRC_URI="http://www.saunalahti.fi/~rahrenbe/vdr/femon/files/${P}.tgz" |
22 | # SRC_URI="http://www.saunalahti.fi/~rahrenbe/vdr/femon/files/${P}.tgz" |
| 21 | # LICENSE="GPL-2" |
23 | # LICENSE="GPL-2" |
| 22 | # KEYWORDS="~x86" |
24 | # KEYWORDS="~x86" |
| 23 | # DEPEND=">=media-video/vdr-1.3.27" |
25 | # DEPEND=">=media-video/vdr-1.6.0" |
| 24 | # |
26 | # |
| 25 | # |
27 | # |
|
|
28 | |
|
|
29 | # For patching you should modify src_prepare phase: |
|
|
30 | # |
|
|
31 | # src_prepare() { |
|
|
32 | # epatch "${FILESDIR}"/${P}-xxx.patch |
|
|
33 | # vdr-plugin_src_prepare |
|
|
34 | # } |
| 26 | |
35 | |
| 27 | # Installation of a config file for the plugin |
36 | # Installation of a config file for the plugin |
| 28 | # |
37 | # |
| 29 | # If ${VDR_CONFD_FILE} is set install this file |
38 | # If ${VDR_CONFD_FILE} is set install this file |
| 30 | # else install ${FILESDIR}/confd if it exists. |
39 | # else install ${FILESDIR}/confd if it exists. |
| … | |
… | |
| 37 | # |
46 | # |
| 38 | # If ${VDR_RCADDON_FILE} is set install this file |
47 | # If ${VDR_RCADDON_FILE} is set install this file |
| 39 | # else install ${FILESDIR}/rc-addon.sh if it exists. |
48 | # else install ${FILESDIR}/rc-addon.sh if it exists. |
| 40 | # |
49 | # |
| 41 | # Gets installed under ${VDR_RC_DIR}/plugin-${VDRPLUGIN}.sh |
50 | # Gets installed under ${VDR_RC_DIR}/plugin-${VDRPLUGIN}.sh |
| 42 | # (in example vdr-femon this would be /usr/lib/vdr/rcscript/plugin-femon.sh) |
51 | # (in example vdr-femon this would be /usr/share/vdr/rcscript/plugin-femon.sh) |
| 43 | # |
52 | # |
| 44 | # This file is sourced by the startscript when plugin is activated in /etc/conf.d/vdr |
53 | # This file is sourced by the startscript when plugin is activated in /etc/conf.d/vdr |
| 45 | # It could be used for special startup actions for this plugins, or to create the |
54 | # It could be used for special startup actions for this plugins, or to create the |
| 46 | # plugin command line options from a nicer version of a conf.d file. |
55 | # plugin command line options from a nicer version of a conf.d file. |
| 47 | |
56 | |
|
|
57 | # HowTo use own local patches; Example |
|
|
58 | # |
|
|
59 | # Add to your /etc/make.conf: |
|
|
60 | # VDR_LOCAL_PATCHES_DIR="/usr/local/patch" |
|
|
61 | # |
|
|
62 | # Add two DIR's in your local patch dir, ${PN}/${PV}, |
|
|
63 | # e.g for vdr-burn-0.1.0 should be: |
|
|
64 | # /usr/local/patch/vdr-burn/0.1.0/ |
|
|
65 | # |
|
|
66 | # all patches which ending on diff or patch in this DIR will automatically applied |
|
|
67 | # |
|
|
68 | |
| 48 | inherit base multilib eutils flag-o-matic |
69 | inherit base multilib eutils flag-o-matic |
| 49 | |
70 | |
| 50 | IUSE="debug" |
71 | if ! has "${EAPI:-0}" 0 1 2 3; then |
|
|
72 | die "API of vdr-plugin.eclass in EAPI=\"${EAPI}\" not established" |
|
|
73 | fi |
|
|
74 | |
|
|
75 | IUSE="" |
| 51 | |
76 | |
| 52 | # Name of the plugin stripped from all vdrplugin-, vdr- and -cvs pre- and postfixes |
77 | # Name of the plugin stripped from all vdrplugin-, vdr- and -cvs pre- and postfixes |
| 53 | VDRPLUGIN="${PN/#vdrplugin-/}" |
78 | VDRPLUGIN="${PN/#vdrplugin-/}" |
| 54 | VDRPLUGIN="${VDRPLUGIN/#vdr-/}" |
79 | VDRPLUGIN="${VDRPLUGIN/#vdr-/}" |
| 55 | VDRPLUGIN="${VDRPLUGIN/%-cvs/}" |
80 | VDRPLUGIN="${VDRPLUGIN/%-cvs/}" |
| … | |
… | |
| 58 | |
83 | |
| 59 | # works in most cases |
84 | # works in most cases |
| 60 | S="${WORKDIR}/${VDRPLUGIN}-${PV}" |
85 | S="${WORKDIR}/${VDRPLUGIN}-${PV}" |
| 61 | |
86 | |
| 62 | # depend on headers for DVB-driver |
87 | # depend on headers for DVB-driver |
| 63 | RDEPEND="" |
88 | COMMON_DEPEND=">=media-tv/gentoo-vdr-scripts-0.4.2" |
|
|
89 | |
|
|
90 | DEPEND="${COMMON_DEPEND} |
| 64 | DEPEND="media-tv/linuxtv-dvb-headers" |
91 | media-tv/linuxtv-dvb-headers" |
|
|
92 | RDEPEND="${COMMON_DEPEND} |
|
|
93 | >=app-admin/eselect-vdr-0.0.2" |
| 65 | |
94 | |
| 66 | |
95 | # this is a hack for ebuilds like vdr-xineliboutput that want to |
| 67 | # this code is from linux-mod.eclass |
96 | # conditionally install a vdr-plugin |
| 68 | update_vdrplugindb() { |
97 | if [[ "${GENTOO_VDR_CONDITIONAL:-no}" = "yes" ]]; then |
| 69 | local VDRPLUGINDB_DIR=${ROOT}/var/lib/vdrplugin-rebuild/ |
98 | # make DEPEND conditional |
| 70 | |
99 | IUSE="${IUSE} vdr" |
| 71 | if [[ ! -f ${VDRPLUGINDB_DIR}/vdrplugindb ]]; then |
100 | DEPEND="vdr? ( ${DEPEND} )" |
| 72 | [[ ! -d ${VDRPLUGINDB_DIR} ]] && mkdir -p ${VDRPLUGINDB_DIR} |
101 | RDEPEND="vdr? ( ${RDEPEND} )" |
| 73 | touch ${VDRPLUGINDB_DIR}/vdrplugindb |
|
|
| 74 | fi |
102 | fi |
| 75 | if [[ -z $(grep ${CATEGORY}/${PN}-${PVR} ${VDRPLUGINDB_DIR}/vdrplugindb) ]]; then |
|
|
| 76 | einfo "Adding plugin to vdrplugindb." |
|
|
| 77 | echo "a:1:${CATEGORY}/${PN}-${PVR}" >> ${VDRPLUGINDB_DIR}/vdrplugindb |
|
|
| 78 | fi |
|
|
| 79 | } |
|
|
| 80 | |
103 | |
| 81 | remove_vdrplugindb() { |
104 | # New method of storing plugindb |
|
|
105 | # Called from src_install |
|
|
106 | # file maintained by normal portage-methods |
|
|
107 | create_plugindb_file() { |
| 82 | local VDRPLUGINDB_DIR=${ROOT}/var/lib/vdrplugin-rebuild/ |
108 | local NEW_VDRPLUGINDB_DIR=/usr/share/vdr/vdrplugin-rebuild/ |
|
|
109 | local DB_FILE="${NEW_VDRPLUGINDB_DIR}/${CATEGORY}-${PF}" |
|
|
110 | insinto "${NEW_VDRPLUGINDB_DIR}" |
| 83 | |
111 | |
| 84 | if [[ -n $(grep ${CATEGORY}/${PN}-${PVR} ${VDRPLUGINDB_DIR}/vdrplugindb) ]]; then |
112 | # BUG: portage-2.1.4_rc9 will delete the EBUILD= line, so we cannot use this code. |
| 85 | einfo "Removing ${CATEGORY}/${PN}-${PVR} from vdrplugindb." |
113 | # cat <<-EOT > "${D}/${DB_FILE}" |
| 86 | sed -ie "/.*${CATEGORY}\/${P}.*/d" ${VDRPLUGINDB_DIR}/vdrplugindb |
114 | # VDRPLUGIN_DB=1 |
| 87 | fi |
115 | # CREATOR=ECLASS |
|
|
116 | # EBUILD=${CATEGORY}/${PN} |
|
|
117 | # EBUILD_V=${PVR} |
|
|
118 | # EOT |
|
|
119 | { |
|
|
120 | echo "VDRPLUGIN_DB=1" |
|
|
121 | echo "CREATOR=ECLASS" |
|
|
122 | echo "EBUILD=${CATEGORY}/${PN}" |
|
|
123 | echo "EBUILD_V=${PVR}" |
|
|
124 | echo "PLUGINS=\"$@\"" |
|
|
125 | } > "${D}/${DB_FILE}" |
| 88 | } |
126 | } |
| 89 | |
127 | |
| 90 | vdr-plugin_pkg_setup() { |
128 | # Delete files created outside of vdr-plugin.eclass |
| 91 | # -fPIC is needed for shared objects on some platforms (amd64 and others) |
129 | # vdrplugin-rebuild.ebuild converted plugindb and files are |
| 92 | append-flags -fPIC |
130 | # not deleted by portage itself - should only be needed as |
| 93 | use debug && append-flags -g |
131 | # long as not every system has switched over to |
|
|
132 | # vdrplugin-rebuild-0.2 / gentoo-vdr-scripts-0.4.2 |
|
|
133 | delete_orphan_plugindb_file() { |
|
|
134 | #elog Testing for orphaned plugindb file |
|
|
135 | local NEW_VDRPLUGINDB_DIR=/usr/share/vdr/vdrplugin-rebuild/ |
|
|
136 | local DB_FILE="${ROOT}/${NEW_VDRPLUGINDB_DIR}/${CATEGORY}-${PF}" |
| 94 | |
137 | |
| 95 | # Where should the plugins live in the filesystem |
138 | # file exists |
| 96 | VDR_PLUGIN_DIR="/usr/$(get_libdir)/vdr/plugins" |
139 | [[ -f ${DB_FILE} ]] || return |
| 97 | VDR_CHECKSUM_DIR="${VDR_PLUGIN_DIR%/plugins}/checksums" |
|
|
| 98 | |
140 | |
| 99 | # transition to /usr/share/... will need new vdr-scripts version stable |
141 | # will portage handle the file itself |
| 100 | VDR_RC_DIR="/usr/lib/vdr/rcscript" |
142 | if grep -q CREATOR=ECLASS "${DB_FILE}"; then |
| 101 | |
143 | #elog file owned by eclass - don't touch it |
| 102 | # Pathes to includes |
144 | return |
| 103 | VDR_INCLUDE_DIR="/usr/include" |
|
|
| 104 | DVB_INCLUDE_DIR="/usr/include" |
|
|
| 105 | |
|
|
| 106 | |
|
|
| 107 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' ${VDR_INCLUDE_DIR}/vdr/config.h) |
|
|
| 108 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' ${VDR_INCLUDE_DIR}/vdr/config.h) |
|
|
| 109 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
|
|
| 110 | |
|
|
| 111 | einfo "Building ${PF} against vdr-${VDRVERSION}" |
|
|
| 112 | einfo "APIVERSION: ${APIVERSION}" |
|
|
| 113 | } |
|
|
| 114 | |
|
|
| 115 | vdr-plugin_src_unpack() { |
|
|
| 116 | [ -z "$1" ] && vdr-plugin_src_unpack unpack patchmakefile |
|
|
| 117 | |
|
|
| 118 | while [ "$1" ]; do |
|
|
| 119 | |
|
|
| 120 | case "$1" in |
|
|
| 121 | unpack) |
|
|
| 122 | base_src_unpack |
|
|
| 123 | ;; |
|
|
| 124 | patchmakefile) |
|
|
| 125 | if ! cd ${S}; then |
|
|
| 126 | ewarn "There seems to be no plugin-directory with the name ${S##*/}" |
|
|
| 127 | ewarn "Perhaps you find one among these:" |
|
|
| 128 | cd "${WORKDIR}" |
|
|
| 129 | einfo "$(/bin/ls -1 ${WORKDIR})" |
|
|
| 130 | die "Could not change to plugin-source-directory!" |
|
|
| 131 | fi |
145 | fi |
| 132 | |
146 | |
| 133 | ebegin "Patching Makefile" |
147 | elog "Removing orphaned plugindb-file." |
| 134 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
148 | elog "\t#rm ${DB_FILE}" |
| 135 | cp Makefile Makefile.orig |
149 | rm "${DB_FILE}" |
| 136 | sed -i.orig Makefile \ |
150 | } |
| 137 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
|
|
| 138 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
|
|
| 139 | -e "s:^LIBDIR.*$:LIBDIR = ${S}:" \ |
|
|
| 140 | -e "s:^TMPDIR.*$:TMPDIR = ${T}:" \ |
|
|
| 141 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
|
|
| 142 | -e 's:-I$(VDRDIR)/include:-I$(VDRDIR):' \ |
|
|
| 143 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
|
|
| 144 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' \ |
|
|
| 145 | -e 's:$(VDRDIR)/\([a-z]*\.h\|Make.config\):$(VDRDIR)/vdr/\1:' \ |
|
|
| 146 | -e 's:^APIVERSION = :APIVERSION ?= :' \ |
|
|
| 147 | -e 's:$(LIBDIR)/$@.$(VDRVERSION):$(LIBDIR)/$@.$(APIVERSION):' \ |
|
|
| 148 | -e '1i\APIVERSION = '"${APIVERSION}" |
|
|
| 149 | eend $? |
|
|
| 150 | ;; |
|
|
| 151 | esac |
|
|
| 152 | |
151 | |
| 153 | shift |
152 | |
|
|
153 | create_header_checksum_file() |
|
|
154 | { |
|
|
155 | # Danger: Not using $ROOT here, as compile will also not use it !!! |
|
|
156 | # If vdr in $ROOT and / differ, plugins will not run anyway |
|
|
157 | |
|
|
158 | local CHKSUM="header-md5-vdr" |
|
|
159 | |
|
|
160 | if [[ -f ${VDR_CHECKSUM_DIR}/header-md5-vdr ]]; then |
|
|
161 | cp "${VDR_CHECKSUM_DIR}/header-md5-vdr" "${CHKSUM}" |
|
|
162 | elif type -p md5sum >/dev/null 2>&1; then |
|
|
163 | ( |
|
|
164 | cd "${VDR_INCLUDE_DIR}" |
|
|
165 | md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
|
|
166 | ) > "${CHKSUM}" |
|
|
167 | else |
|
|
168 | die "Could not create md5 checksum of headers" |
|
|
169 | fi |
|
|
170 | |
|
|
171 | insinto "${VDR_CHECKSUM_DIR}" |
|
|
172 | local p_name |
|
|
173 | for p_name; do |
|
|
174 | newins "${CHKSUM}" "header-md5-${p_name}" |
| 154 | done |
175 | done |
| 155 | } |
|
|
| 156 | |
|
|
| 157 | vdr-plugin_copy_source_tree() { |
|
|
| 158 | cp -r ${S} ${T}/source-tree |
|
|
| 159 | cd ${T}/source-tree |
|
|
| 160 | mv Makefile.orig Makefile |
|
|
| 161 | sed -i Makefile \ |
|
|
| 162 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
|
|
| 163 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
|
|
| 164 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
|
|
| 165 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
|
|
| 166 | } |
|
|
| 167 | |
|
|
| 168 | vdr-plugin_install_source_tree() { |
|
|
| 169 | einfo "Installing sources" |
|
|
| 170 | destdir=${VDRSOURCE_DIR}/vdr-${VDRVERSION}/PLUGINS/src/${VDRPLUGIN} |
|
|
| 171 | insinto ${destdir}-${PV} |
|
|
| 172 | doins -r ${T}/source-tree/* |
|
|
| 173 | |
|
|
| 174 | dosym ${VDRPLUGIN}-${PV} ${destdir} |
|
|
| 175 | } |
|
|
| 176 | |
|
|
| 177 | vdr-plugin_src_compile() { |
|
|
| 178 | [ -z "$1" ] && vdr-plugin_src_compile prepare compile |
|
|
| 179 | |
|
|
| 180 | while [ "$1" ]; do |
|
|
| 181 | |
|
|
| 182 | case "$1" in |
|
|
| 183 | prepare) |
|
|
| 184 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_copy_source_tree |
|
|
| 185 | ;; |
|
|
| 186 | compile) |
|
|
| 187 | cd ${S} |
|
|
| 188 | |
|
|
| 189 | emake ${VDRPLUGIN_MAKE_TARGET:-all} || die "emake failed" |
|
|
| 190 | ;; |
|
|
| 191 | esac |
|
|
| 192 | |
|
|
| 193 | shift |
|
|
| 194 | done |
|
|
| 195 | } |
|
|
| 196 | |
|
|
| 197 | vdr-plugin_src_install() { |
|
|
| 198 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_install_source_tree |
|
|
| 199 | cd ${S} |
|
|
| 200 | |
|
|
| 201 | if [[ -n ${VDR_MAINTAINER_MODE} ]]; then |
|
|
| 202 | local mname=${P}-Makefile |
|
|
| 203 | cp Makefile ${mname}.patched |
|
|
| 204 | cp Makefile.orig ${mname}.before |
|
|
| 205 | |
|
|
| 206 | diff -u ${mname}.before ${mname}.patched > ${mname}.diff |
|
|
| 207 | |
|
|
| 208 | insinto "/usr/share/vdr/maintainer-data/makefile-changes" |
|
|
| 209 | doins ${mname}.diff |
|
|
| 210 | |
|
|
| 211 | insinto "/usr/share/vdr/maintainer-data/makefile-before" |
|
|
| 212 | doins ${mname}.before |
|
|
| 213 | |
|
|
| 214 | insinto "/usr/share/vdr/maintainer-data/makefile-patched" |
|
|
| 215 | doins ${mname}.patched |
|
|
| 216 | |
|
|
| 217 | fi |
|
|
| 218 | |
|
|
| 219 | insinto "${VDR_PLUGIN_DIR}" |
|
|
| 220 | doins libvdr-*.so.* |
|
|
| 221 | dodoc README* HISTORY CHANGELOG |
|
|
| 222 | |
|
|
| 223 | |
|
|
| 224 | # if VDR_CONFD_FILE is empty and ${FILESDIR}/confd exists take it |
|
|
| 225 | [[ -z ${VDR_CONFD_FILE} ]] && [[ -e ${FILESDIR}/confd ]] && VDR_CONFD_FILE=${FILESDIR}/confd |
|
|
| 226 | |
|
|
| 227 | if [[ -n ${VDR_CONFD_FILE} ]]; then |
|
|
| 228 | insinto /etc/conf.d |
|
|
| 229 | newins "${VDR_CONFD_FILE}" vdr.${VDRPLUGIN} |
|
|
| 230 | fi |
|
|
| 231 | |
|
|
| 232 | |
|
|
| 233 | # if VDR_RCADDON_FILE is empty and ${FILESDIR}/rc-addon.sh exists take it |
|
|
| 234 | [[ -z ${VDR_RCADDON_FILE} ]] && [[ -e ${FILESDIR}/rc-addon.sh ]] && VDR_RCADDON_FILE=${FILESDIR}/rc-addon.sh |
|
|
| 235 | |
|
|
| 236 | if [[ -n ${VDR_RCADDON_FILE} ]]; then |
|
|
| 237 | insinto "${VDR_RC_DIR}" |
|
|
| 238 | newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
|
|
| 239 | fi |
|
|
| 240 | |
|
|
| 241 | |
|
|
| 242 | |
|
|
| 243 | insinto ${VDR_CHECKSUM_DIR} |
|
|
| 244 | if [[ -f ${ROOT}${VDR_CHECKSUM_DIR}/header-md5-vdr ]]; then |
|
|
| 245 | newins ${ROOT}${VDR_CHECKSUM_DIR}/header-md5-vdr header-md5-${PN} |
|
|
| 246 | else |
|
|
| 247 | if which md5sum >/dev/null 2>&1; then |
|
|
| 248 | cd ${S} |
|
|
| 249 | ( |
|
|
| 250 | cd ${ROOT}${VDR_INCLUDE_DIR}/vdr |
|
|
| 251 | md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
|
|
| 252 | ) > header-md5-${PN} |
|
|
| 253 | doins header-md5-${PN} |
|
|
| 254 | fi |
|
|
| 255 | fi |
|
|
| 256 | } |
|
|
| 257 | |
|
|
| 258 | vdr-plugin_pkg_postinst() { |
|
|
| 259 | update_vdrplugindb |
|
|
| 260 | einfo |
|
|
| 261 | einfo "The vdr plugin ${VDRPLUGIN} has now been installed." |
|
|
| 262 | einfo "To activate execute the following command:" |
|
|
| 263 | einfo |
|
|
| 264 | einfo " emerge --config ${PN}" |
|
|
| 265 | einfo |
|
|
| 266 | if [[ -n "${VDR_CONFD_FILE}" ]]; then |
|
|
| 267 | einfo "And have a look at the config-file" |
|
|
| 268 | einfo "/etc/conf.d/vdr.${VDRPLUGIN}" |
|
|
| 269 | einfo |
|
|
| 270 | fi |
|
|
| 271 | } |
|
|
| 272 | |
|
|
| 273 | vdr-plugin_pkg_postrm() { |
|
|
| 274 | remove_vdrplugindb |
|
|
| 275 | } |
|
|
| 276 | |
|
|
| 277 | vdr-plugin_pkg_config_final() { |
|
|
| 278 | diff ${conf_orig} ${conf} |
|
|
| 279 | rm ${conf_orig} |
|
|
| 280 | } |
|
|
| 281 | |
|
|
| 282 | vdr-plugin_pkg_config() { |
|
|
| 283 | if [[ -z "${INSTALLPLUGIN}" ]]; then |
|
|
| 284 | INSTALLPLUGIN="${VDRPLUGIN}" |
|
|
| 285 | fi |
|
|
| 286 | # First test if plugin is already inside PLUGINS |
|
|
| 287 | local conf=/etc/conf.d/vdr |
|
|
| 288 | conf_orig=${conf}.before_emerge_config |
|
|
| 289 | cp ${conf} ${conf_orig} |
|
|
| 290 | |
|
|
| 291 | einfo "Reading ${conf}" |
|
|
| 292 | if ! grep -q "^PLUGINS=" ${conf}; then |
|
|
| 293 | local LINE=$(sed ${conf} -n -e '/^#.*PLUGINS=/=' | tail -n 1) |
|
|
| 294 | if [[ -n "${LINE}" ]]; then |
|
|
| 295 | sed -e ${LINE}'a PLUGINS=""' -i ${conf} |
|
|
| 296 | else |
|
|
| 297 | echo 'PLUGINS=""' >> ${conf} |
|
|
| 298 | fi |
|
|
| 299 | unset LINE |
|
|
| 300 | fi |
|
|
| 301 | |
|
|
| 302 | unset PLUGINS |
|
|
| 303 | PLUGINS=$(source /etc/conf.d/vdr; echo ${PLUGINS}) |
|
|
| 304 | |
|
|
| 305 | active=0 |
|
|
| 306 | for p in ${PLUGINS}; do |
|
|
| 307 | if [[ "${p}" == "${INSTALLPLUGIN}" ]]; then |
|
|
| 308 | active=1 |
|
|
| 309 | break; |
|
|
| 310 | fi |
|
|
| 311 | done |
|
|
| 312 | |
|
|
| 313 | if [[ "${active}" == "1" ]]; then |
|
|
| 314 | einfo "${INSTALLPLUGIN} already activated" |
|
|
| 315 | echo |
|
|
| 316 | read -p "Do you want to deactivate ${INSTALLPLUGIN} (yes/no) " answer |
|
|
| 317 | if [[ "${answer}" != "yes" ]]; then |
|
|
| 318 | einfo "aborted" |
|
|
| 319 | return |
|
|
| 320 | fi |
|
|
| 321 | einfo "Removing ${INSTALLPLUGIN} from active plugins." |
|
|
| 322 | local LINE=$(sed ${conf} -n -e '/^PLUGINS=.*\<'${INSTALLPLUGIN}'\>/=' | tail -n 1) |
|
|
| 323 | sed -i ${conf} -e ${LINE}'s/\<'${INSTALLPLUGIN}'\>//' \ |
|
|
| 324 | -e ${LINE}'s/ \( \)*/ /g' \ |
|
|
| 325 | -e ${LINE}'s/ "/"/g' \ |
|
|
| 326 | -e ${LINE}'s/" /"/g' |
|
|
| 327 | |
|
|
| 328 | vdr-plugin_pkg_config_final |
|
|
| 329 | return |
|
|
| 330 | fi |
|
|
| 331 | |
|
|
| 332 | |
|
|
| 333 | einfo "Adding ${INSTALLPLUGIN} to active plugins." |
|
|
| 334 | local LINE=$(sed ${conf} -n -e '/^PLUGINS=/=' | tail -n 1) |
|
|
| 335 | sed -i ${conf} -e ${LINE}'s/^PLUGINS=" *\(.*\)"/PLUGINS="\1 '${INSTALLPLUGIN}'"/' \ |
|
|
| 336 | -e ${LINE}'s/ \( \)*/ /g' \ |
|
|
| 337 | -e ${LINE}'s/ "/"/g' \ |
|
|
| 338 | -e ${LINE}'s/" /"/g' |
|
|
| 339 | |
|
|
| 340 | vdr-plugin_pkg_config_final |
|
|
| 341 | } |
176 | } |
| 342 | |
177 | |
| 343 | fix_vdr_libsi_include() |
178 | fix_vdr_libsi_include() |
| 344 | { |
179 | { |
| 345 | einfo "Fixing include of libsi-headers" |
180 | #einfo "Fixing include of libsi-headers" |
| 346 | local f |
181 | local f |
| 347 | for f; do |
182 | for f; do |
| 348 | sed -i "${f}" \ |
183 | sed -i "${f}" \ |
| 349 | -e '/#include/s:"\(.*libsi.*\)":<\1>:' \ |
184 | -e '/#include/s:"\(.*libsi.*\)":<\1>:' \ |
| 350 | -e '/#include/s:<.*\(libsi/.*\)>:<vdr/\1>:' |
185 | -e '/#include/s:<.*\(libsi/.*\)>:<vdr/\1>:' |
| 351 | done |
186 | done |
| 352 | } |
187 | } |
| 353 | |
188 | |
|
|
189 | vdr_patchmakefile() { |
|
|
190 | einfo "Patching Makefile" |
|
|
191 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
|
|
192 | cp Makefile "${WORKDIR}"/Makefile.before |
|
|
193 | |
|
|
194 | # plugin makefiles use VDRDIR in strange ways |
|
|
195 | # assumptions: |
|
|
196 | # 1. $(VDRDIR) contains Make.config |
|
|
197 | # 2. $(VDRDIR) contains config.h |
|
|
198 | # 3. $(VDRDIR)/include/vdr contains the headers |
|
|
199 | # 4. $(VDRDIR) contains main vdr Makefile |
|
|
200 | # 5. $(VDRDIR)/locale exists |
|
|
201 | # 6. $(VDRDIR) allows to access vdr source files |
|
|
202 | # |
|
|
203 | # We only have one directory (for now /usr/include/vdr), |
|
|
204 | # that contains vdr-headers and Make.config. |
|
|
205 | # To satisfy 1-3 we do this: |
|
|
206 | # Set VDRDIR=/usr/include/vdr |
|
|
207 | # Set VDRINCDIR=/usr/include |
|
|
208 | # Change $(VDRDIR)/include to $(VDRINCDIR) |
|
|
209 | |
|
|
210 | sed -i Makefile \ |
|
|
211 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
|
|
212 | -e "/^VDRDIR/a VDRINCDIR = ${VDR_INCLUDE_DIR%/vdr}" \ |
|
|
213 | -e '/VDRINCDIR.*=/!s:$(VDRDIR)/include:$(VDRINCDIR):' \ |
|
|
214 | \ |
|
|
215 | -e 's:-I$(DVBDIR)/include::' \ |
|
|
216 | -e 's:-I$(DVBDIR)::' |
|
|
217 | |
|
|
218 | # maybe needed for multiproto: |
|
|
219 | #sed -i Makefile \ |
|
|
220 | # -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
|
|
221 | # -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' |
|
|
222 | |
|
|
223 | if ! grep -q APIVERSION Makefile; then |
|
|
224 | ebegin " Converting to APIVERSION" |
|
|
225 | sed -i Makefile \ |
|
|
226 | -e 's:^APIVERSION = :APIVERSION ?= :' \ |
|
|
227 | -e 's:$(LIBDIR)/$@.$(VDRVERSION):$(LIBDIR)/$@.$(APIVERSION):' \ |
|
|
228 | -e '/VDRVERSION =/a\APIVERSION = $(shell sed -ne '"'"'/define APIVERSION/s/^.*"\\(.*\\)".*$$/\\1/p'"'"' $(VDRDIR)/config.h)' |
|
|
229 | eend $? |
|
|
230 | fi |
|
|
231 | |
|
|
232 | # Correcting Compile-Flags |
|
|
233 | # Do not overwrite CXXFLAGS, add LDFLAGS if missing |
|
|
234 | sed -i Makefile \ |
|
|
235 | -e '/^CXXFLAGS[[:space:]]*=/s/=/?=/' \ |
|
|
236 | -e '/LDFLAGS/!s:-shared:$(LDFLAGS) -shared:' |
|
|
237 | |
|
|
238 | # Disabling file stripping, useful for debugging |
|
|
239 | sed -i Makefile \ |
|
|
240 | -e '/@.*strip/d' \ |
|
|
241 | -e '/strip \$(LIBDIR)\/\$@/d' \ |
|
|
242 | -e 's/STRIP.*=.*$/STRIP = true/' |
|
|
243 | |
|
|
244 | # Use a file instead of a variable as single-stepping via ebuild |
|
|
245 | # destroys environment. |
|
|
246 | touch "${WORKDIR}"/.vdr-plugin_makefile_patched |
|
|
247 | } |
|
|
248 | |
|
|
249 | vdr_add_local_patch() { |
|
|
250 | if test -d "${VDR_LOCAL_PATCHES_DIR}/${PN}"; then |
|
|
251 | echo |
|
|
252 | einfo "Applying local patches" |
|
|
253 | for LOCALPATCH in "${VDR_LOCAL_PATCHES_DIR}/${PN}/${PV}"/*.{diff,patch}; do |
|
|
254 | test -f "${LOCALPATCH}" && epatch "${LOCALPATCH}" |
|
|
255 | done |
|
|
256 | fi |
|
|
257 | } |
|
|
258 | |
|
|
259 | vdr_has_gettext() { |
|
|
260 | has_version ">=media-video/vdr-1.5.7" |
|
|
261 | } |
|
|
262 | |
|
|
263 | plugin_has_gettext() { |
|
|
264 | [[ -d po ]] |
|
|
265 | } |
|
|
266 | |
|
|
267 | vdr_i18n_convert_to_gettext() { |
|
|
268 | if has_version ">=media-video/vdr-1.7.22"; then |
|
|
269 | local i18n_tool="${ROOT}/usr/share/vdr/bin/i18n-to-gettext" |
|
|
270 | else |
|
|
271 | local i18n_tool="${ROOT}/usr/share/vdr/bin/i18n-to-gettext.pl" |
|
|
272 | fi |
|
|
273 | |
|
|
274 | if [[ ${NO_GETTEXT_HACK} == "1" ]]; then |
|
|
275 | ewarn "Conversion to gettext disabled in ebuild" |
|
|
276 | return 1 |
|
|
277 | fi |
|
|
278 | |
|
|
279 | if [[ ! -x ${i18n_tool} ]]; then |
|
|
280 | eerror "Missing ${i18n_tool}" |
|
|
281 | eerror "Please re-emerge vdr" |
|
|
282 | die "Missing ${i18n_tool}" |
|
|
283 | fi |
|
|
284 | |
|
|
285 | ebegin "Auto converting translations to gettext" |
|
|
286 | # call i18n-to-gettext tool |
|
|
287 | # take all texts missing tr call into special file |
|
|
288 | "${i18n_tool}" 2>/dev/null \ |
|
|
289 | |sed -e '/^"/!d' \ |
|
|
290 | -e '/^""$/d' \ |
|
|
291 | -e 's/\(.*\)/trNOOP(\1)/' \ |
|
|
292 | > dummy-translations-trNOOP.c |
|
|
293 | |
|
|
294 | # if there were untranslated texts just run it again |
|
|
295 | # now the missing calls are listed in |
|
|
296 | # dummy-translations-trNOOP.c |
|
|
297 | if [[ -s dummy-translations-trNOOP.c ]]; then |
|
|
298 | "${i18n_tool}" &>/dev/null |
|
|
299 | fi |
|
|
300 | |
|
|
301 | # now use the modified Makefile |
|
|
302 | if [[ -f Makefile.new ]]; then |
|
|
303 | mv Makefile.new Makefile |
|
|
304 | eend 0 "" |
|
|
305 | else |
|
|
306 | eend 1 "Conversion to gettext failed. Plugin needs fixing." |
|
|
307 | return 1 |
|
|
308 | fi |
|
|
309 | } |
|
|
310 | |
|
|
311 | vdr_i18n_disable_gettext() { |
|
|
312 | #einfo "Disabling gettext support in plugin" |
|
|
313 | |
|
|
314 | # Remove i18n Target if using older vdr |
|
|
315 | sed -i Makefile \ |
|
|
316 | -e '/^all:/s/ i18n//' |
|
|
317 | } |
|
|
318 | |
|
|
319 | vdr_i18n() { |
|
|
320 | if vdr_has_gettext; then |
|
|
321 | #einfo "VDR has gettext support" |
|
|
322 | if plugin_has_gettext; then |
|
|
323 | #einfo "Plugin has gettext support, fine" |
|
|
324 | if [[ ${NO_GETTEXT_HACK} == "1" ]]; then |
|
|
325 | ewarn "Please remove unneeded NO_GETTEXT_HACK from ebuild." |
|
|
326 | fi |
|
|
327 | else |
|
|
328 | vdr_i18n_convert_to_gettext |
|
|
329 | if [[ $? != 0 ]]; then |
|
|
330 | eerror "" |
|
|
331 | eerror "Plugin will have only english OSD texts" |
|
|
332 | eerror "it needs manual fixing." |
|
|
333 | fi |
|
|
334 | fi |
|
|
335 | else |
|
|
336 | #einfo "VDR has no gettext support" |
|
|
337 | if plugin_has_gettext; then |
|
|
338 | vdr_i18n_disable_gettext |
|
|
339 | fi |
|
|
340 | fi |
|
|
341 | } |
|
|
342 | |
|
|
343 | vdr-plugin_copy_source_tree() { |
|
|
344 | pushd . >/dev/null |
|
|
345 | cp -r "${S}" "${T}"/source-tree |
|
|
346 | cd "${T}"/source-tree |
|
|
347 | cp "${WORKDIR}"/Makefile.before Makefile |
|
|
348 | # TODO: Fix this, maybe no longer needed |
|
|
349 | sed -i Makefile \ |
|
|
350 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
|
|
351 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
|
|
352 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
|
|
353 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
|
|
354 | popd >/dev/null |
|
|
355 | } |
|
|
356 | |
|
|
357 | vdr-plugin_install_source_tree() { |
|
|
358 | einfo "Installing sources" |
|
|
359 | destdir="${VDRSOURCE_DIR}/vdr-${VDRVERSION}/PLUGINS/src/${VDRPLUGIN}" |
|
|
360 | insinto "${destdir}-${PV}" |
|
|
361 | doins -r "${T}"/source-tree/* |
|
|
362 | |
|
|
363 | dosym "${VDRPLUGIN}-${PV}" "${destdir}" |
|
|
364 | } |
|
|
365 | |
|
|
366 | vdr-plugin_print_enable_command() { |
|
|
367 | local p_name c=0 l="" |
|
|
368 | for p_name in ${vdr_plugin_list}; do |
|
|
369 | c=$(( c+1 )) |
|
|
370 | l="$l ${p_name#vdr-}" |
|
|
371 | done |
|
|
372 | |
|
|
373 | elog |
|
|
374 | case $c in |
|
|
375 | 1) elog "Installed plugin${l}" ;; |
|
|
376 | *) elog "Installed $c plugins:${l}" ;; |
|
|
377 | esac |
|
|
378 | elog "To activate a plugin execute this command:" |
|
|
379 | elog "\teselect vdr-plugin enable <plugin_name> ..." |
|
|
380 | elog |
|
|
381 | } |
|
|
382 | |
|
|
383 | has_vdr() { |
|
|
384 | [[ -f "${VDR_INCLUDE_DIR}"/config.h ]] |
|
|
385 | } |
|
|
386 | |
|
|
387 | ## exported functions |
|
|
388 | |
|
|
389 | vdr-plugin_pkg_setup() { |
|
|
390 | # -fPIC is needed for shared objects on some platforms (amd64 and others) |
|
|
391 | append-flags -fPIC |
|
|
392 | |
|
|
393 | # Plugins need to be compiled with position independent code, otherwise linking |
|
|
394 | # VDR against it will fail |
|
|
395 | if has_version ">=media-video/vdr-1.7.13"; then |
|
|
396 | append-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
|
|
397 | fi |
|
|
398 | |
|
|
399 | # Where should the plugins live in the filesystem |
|
|
400 | VDR_PLUGIN_DIR="/usr/$(get_libdir)/vdr/plugins" |
|
|
401 | VDR_CHECKSUM_DIR="${VDR_PLUGIN_DIR%/plugins}/checksums" |
|
|
402 | |
|
|
403 | # was /usr/lib/... some time ago |
|
|
404 | # since gentoo-vdr-scripts-0.3.6 it works with /usr/share/... |
|
|
405 | VDR_RC_DIR="/usr/share/vdr/rcscript" |
|
|
406 | |
|
|
407 | # Pathes to includes |
|
|
408 | VDR_INCLUDE_DIR="/usr/include/vdr" |
|
|
409 | DVB_INCLUDE_DIR="/usr/include" |
|
|
410 | |
|
|
411 | TMP_LOCALE_DIR="${WORKDIR}/tmp-locale" |
|
|
412 | if has_version ">=media-video/vdr-1.6.0_p2-r7"; then |
|
|
413 | LOCDIR="/usr/share/locale" |
|
|
414 | else |
|
|
415 | LOCDIR="/usr/share/vdr/locale" |
|
|
416 | fi |
|
|
417 | |
|
|
418 | if ! has_vdr; then |
|
|
419 | # set to invalid values to detect abuses |
|
|
420 | VDRVERSION="eclass_no_vdr_installed" |
|
|
421 | APIVERSION="eclass_no_vdr_installed" |
|
|
422 | |
|
|
423 | if [[ "${GENTOO_VDR_CONDITIONAL:-no}" = "yes" ]] && ! use vdr; then |
|
|
424 | einfo "VDR not found!" |
|
|
425 | else |
|
|
426 | # if vdr is required |
|
|
427 | die "VDR not found!" |
|
|
428 | fi |
|
|
429 | return |
|
|
430 | fi |
|
|
431 | |
|
|
432 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
|
|
433 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
|
|
434 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
|
|
435 | |
|
|
436 | einfo "Compiling against" |
|
|
437 | einfo "\tvdr-${VDRVERSION} [API version ${APIVERSION}]" |
|
|
438 | } |
|
|
439 | |
|
|
440 | vdr-plugin_src_util() { |
|
|
441 | |
|
|
442 | while [ "$1" ]; do |
|
|
443 | |
|
|
444 | case "$1" in |
|
|
445 | all) |
|
|
446 | vdr-plugin_src_util unpack add_local_patch patchmakefile i18n |
|
|
447 | ;; |
|
|
448 | prepare|all_but_unpack) |
|
|
449 | vdr-plugin_src_util add_local_patch patchmakefile i18n |
|
|
450 | ;; |
|
|
451 | unpack) |
|
|
452 | base_src_unpack |
|
|
453 | ;; |
|
|
454 | add_local_patch) |
|
|
455 | cd "${S}" || die "Could not change to plugin-source-directory!" |
|
|
456 | vdr_add_local_patch |
|
|
457 | ;; |
|
|
458 | patchmakefile) |
|
|
459 | cd "${S}" || die "Could not change to plugin-source-directory!" |
|
|
460 | vdr_patchmakefile |
|
|
461 | ;; |
|
|
462 | i18n) |
|
|
463 | cd "${S}" || die "Could not change to plugin-source-directory!" |
|
|
464 | vdr_i18n |
|
|
465 | ;; |
|
|
466 | esac |
|
|
467 | |
|
|
468 | shift |
|
|
469 | done |
|
|
470 | } |
|
|
471 | |
|
|
472 | vdr-plugin_src_unpack() { |
|
|
473 | if [[ -z ${VDR_INCLUDE_DIR} ]]; then |
|
|
474 | eerror "Wrong use of vdr-plugin.eclass." |
|
|
475 | eerror "An ebuild for a vdr-plugin will not work without calling vdr-plugin_pkg_setup." |
|
|
476 | echo |
|
|
477 | eerror "Please report this at bugs.gentoo.org." |
|
|
478 | die "vdr-plugin_pkg_setup not called!" |
|
|
479 | fi |
|
|
480 | if [ -z "$1" ]; then |
|
|
481 | case "${EAPI:-0}" in |
|
|
482 | 2|3) |
|
|
483 | vdr-plugin_src_util unpack |
|
|
484 | ;; |
|
|
485 | *) |
|
|
486 | vdr-plugin_src_util all |
|
|
487 | ;; |
|
|
488 | esac |
|
|
489 | |
|
|
490 | else |
|
|
491 | vdr-plugin_src_util $@ |
|
|
492 | fi |
|
|
493 | } |
|
|
494 | |
|
|
495 | vdr-plugin_src_prepare() { |
|
|
496 | base_src_prepare |
|
|
497 | vdr-plugin_src_util prepare |
|
|
498 | } |
|
|
499 | |
|
|
500 | vdr-plugin_src_compile() { |
|
|
501 | [ -z "$1" ] && vdr-plugin_src_compile copy_source compile |
|
|
502 | |
|
|
503 | while [ "$1" ]; do |
|
|
504 | |
|
|
505 | case "$1" in |
|
|
506 | copy_source) |
|
|
507 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_copy_source_tree |
|
|
508 | ;; |
|
|
509 | compile) |
|
|
510 | if [[ ! -f ${WORKDIR}/.vdr-plugin_makefile_patched ]]; then |
|
|
511 | eerror "Wrong use of vdr-plugin.eclass." |
|
|
512 | eerror "An ebuild for a vdr-plugin will not work without" |
|
|
513 | eerror "calling vdr-plugin_src_unpack to patch the Makefile." |
|
|
514 | echo |
|
|
515 | eerror "Please report this at bugs.gentoo.org." |
|
|
516 | die "vdr-plugin_src_unpack not called!" |
|
|
517 | fi |
|
|
518 | cd "${S}" |
|
|
519 | |
|
|
520 | BUILD_TARGETS=${BUILD_TARGETS:-${VDRPLUGIN_MAKE_TARGET:-all}} |
|
|
521 | |
|
|
522 | emake ${BUILD_PARAMS} \ |
|
|
523 | ${BUILD_TARGETS} \ |
|
|
524 | LOCALEDIR="${TMP_LOCALE_DIR}" \ |
|
|
525 | LIBDIR="${S}" \ |
|
|
526 | TMPDIR="${T}" \ |
|
|
527 | || die "emake failed" |
|
|
528 | ;; |
|
|
529 | esac |
|
|
530 | |
|
|
531 | shift |
|
|
532 | done |
|
|
533 | } |
|
|
534 | |
|
|
535 | vdr-plugin_src_install() { |
|
|
536 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_install_source_tree |
|
|
537 | cd "${WORKDIR}" |
|
|
538 | |
|
|
539 | if [[ -n ${VDR_MAINTAINER_MODE} ]]; then |
|
|
540 | local mname="${P}-Makefile" |
|
|
541 | cp "${S}"/Makefile "${mname}.patched" |
|
|
542 | cp Makefile.before "${mname}.before" |
|
|
543 | |
|
|
544 | diff -u "${mname}.before" "${mname}.patched" > "${mname}.diff" |
|
|
545 | |
|
|
546 | insinto "/usr/share/vdr/maintainer-data/makefile-changes" |
|
|
547 | doins "${mname}.diff" |
|
|
548 | |
|
|
549 | insinto "/usr/share/vdr/maintainer-data/makefile-before" |
|
|
550 | doins "${mname}.before" |
|
|
551 | |
|
|
552 | insinto "/usr/share/vdr/maintainer-data/makefile-patched" |
|
|
553 | doins "${mname}.patched" |
|
|
554 | |
|
|
555 | fi |
|
|
556 | |
|
|
557 | |
|
|
558 | |
|
|
559 | cd "${S}" |
|
|
560 | insinto "${VDR_PLUGIN_DIR}" |
|
|
561 | doins libvdr-*.so.* |
|
|
562 | |
|
|
563 | # create list of all created plugin libs |
|
|
564 | vdr_plugin_list="" |
|
|
565 | local p_name |
|
|
566 | for p in libvdr-*.so.*; do |
|
|
567 | p_name="${p%.so*}" |
|
|
568 | p_name="${p_name#lib}" |
|
|
569 | vdr_plugin_list="${vdr_plugin_list} ${p_name}" |
|
|
570 | done |
|
|
571 | |
|
|
572 | create_header_checksum_file ${vdr_plugin_list} |
|
|
573 | create_plugindb_file ${vdr_plugin_list} |
|
|
574 | |
|
|
575 | if vdr_has_gettext && [[ -d ${TMP_LOCALE_DIR} ]]; then |
|
|
576 | einfo "Installing locales" |
|
|
577 | cd "${TMP_LOCALE_DIR}" |
|
|
578 | insinto "${LOCDIR}" |
|
|
579 | doins -r * |
|
|
580 | fi |
|
|
581 | |
|
|
582 | cd "${S}" |
|
|
583 | local docfile |
|
|
584 | for docfile in README* HISTORY CHANGELOG; do |
|
|
585 | [[ -f ${docfile} ]] && dodoc ${docfile} |
|
|
586 | done |
|
|
587 | |
|
|
588 | # if VDR_CONFD_FILE is empty and ${FILESDIR}/confd exists take it |
|
|
589 | [[ -z ${VDR_CONFD_FILE} ]] && [[ -e ${FILESDIR}/confd ]] && VDR_CONFD_FILE=${FILESDIR}/confd |
|
|
590 | |
|
|
591 | if [[ -n ${VDR_CONFD_FILE} ]]; then |
|
|
592 | newconfd "${VDR_CONFD_FILE}" vdr.${VDRPLUGIN} |
|
|
593 | fi |
|
|
594 | |
|
|
595 | |
|
|
596 | # if VDR_RCADDON_FILE is empty and ${FILESDIR}/rc-addon.sh exists take it |
|
|
597 | [[ -z ${VDR_RCADDON_FILE} ]] && [[ -e ${FILESDIR}/rc-addon.sh ]] && VDR_RCADDON_FILE=${FILESDIR}/rc-addon.sh |
|
|
598 | |
|
|
599 | if [[ -n ${VDR_RCADDON_FILE} ]]; then |
|
|
600 | insinto "${VDR_RC_DIR}" |
|
|
601 | newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
|
|
602 | fi |
|
|
603 | } |
|
|
604 | |
|
|
605 | vdr-plugin_pkg_postinst() { |
|
|
606 | vdr-plugin_print_enable_command |
|
|
607 | |
|
|
608 | if [[ -n "${VDR_CONFD_FILE}" ]]; then |
|
|
609 | elog "Please have a look at the config-file" |
|
|
610 | elog "\t/etc/conf.d/vdr.${VDRPLUGIN}" |
|
|
611 | elog |
|
|
612 | fi |
|
|
613 | } |
|
|
614 | |
|
|
615 | vdr-plugin_pkg_postrm() { |
|
|
616 | delete_orphan_plugindb_file |
|
|
617 | } |
|
|
618 | |
|
|
619 | vdr-plugin_pkg_config() { |
|
|
620 | ewarn "emerge --config ${PN} is no longer supported" |
|
|
621 | vdr-plugin_print_enable_command |
|
|
622 | } |
|
|
623 | |
|
|
624 | case "${EAPI:-0}" in |
|
|
625 | 2|3) |
|
|
626 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_compile src_install pkg_postinst pkg_postrm pkg_config |
|
|
627 | ;; |
|
|
628 | *) |
| 354 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_postrm pkg_config |
629 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_postrm pkg_config |
|
|
630 | ;; |
|
|
631 | esac |