mirror of
https://github.com/gentoo-mirror/gentoo-zh.git
synced 2025-04-18 07:18:58 -04:00
47 lines
1.0 KiB
Bash
47 lines
1.0 KiB
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v3
|
|
# $Header: $
|
|
|
|
EAPI="4"
|
|
|
|
inherit fdo-mime versionator eutils
|
|
|
|
MY_VER="$(get_version_component_range 1-2)-1+git$(get_version_component_range 3)~5e0566ccd0"
|
|
SRC_URI="http://packages.linuxdeepin.com/deepin/pool/main/d/${PN}/${PN}_${MY_VER}.tar.gz"
|
|
|
|
DESCRIPTION="System notifications for Deepin Desktop Environment"
|
|
HOMEPAGE="http://www.linuxdeepin.com"
|
|
|
|
LICENSE="GPL-2+"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
RDEPEND="x11-libs/deepin-ui
|
|
dev-python/dbus-python
|
|
dev-python/pygtk:2
|
|
dev-python/pycairo"
|
|
DEPEND=""
|
|
S=${WORKDIR}/${PN}-$(get_version_component_range 1-2)
|
|
|
|
src_prepare() {
|
|
sed -i "s|/usr/bin/python|/usr/bin/python2|g" ${S}/debian/${PN}.desktop
|
|
}
|
|
|
|
src_install() {
|
|
|
|
dobin ${S}/tools/deepin-notify
|
|
|
|
insinto "/etc/xdg/autostart"
|
|
doins ${S}/debian/${PN}.desktop
|
|
|
|
insinto "/usr/share/dbus-1/"
|
|
doins -r ${S}/services
|
|
|
|
insinto "/usr/share/${PN}"
|
|
doins -r ${S}/src ${S}/data
|
|
fperms 0755 -R /usr/share/${PN}/src/main.py
|
|
|
|
}
|
|
|