# HG changeset patch # User Aleksej Bobylev # Date 1523689864 -10800 # Node ID 0621690cc1224888ae8de097c35d29ad28521860 # Parent 6b260e079f813f07dd4d6c4e7c0ec265892465d3 Add notify-python-dev; fix blueman diff -r 6b260e079f81 -r 0621690cc122 blueman/receipt --- a/blueman/receipt Sat Apr 14 10:00:23 2018 +0300 +++ b/blueman/receipt Sat Apr 14 10:11:04 2018 +0300 @@ -11,9 +11,9 @@ TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="http://download.tuxfamily.org/blueman/$TARBALL" -BUILD_DEPENDS="bluez-dev python-dev pygtk-dev notify-python libnotify-dev \ +BUILD_DEPENDS="bluez-dev python-dev pygtk-dev notify-python-dev libnotify-dev \ python-pyrex startup-notification-dev util-linux-uuid-dev dbus-dev \ -dbus-python-dev intltool libtool notify-python xorg-xcb-util-dev" +dbus-python-dev intltool libtool xorg-xcb-util-dev" compile_rules() { ./configure \ diff -r 6b260e079f81 -r 0621690cc122 notify-python/receipt --- a/notify-python/receipt Sat Apr 14 10:00:23 2018 +0300 +++ b/notify-python/receipt Sat Apr 14 10:11:04 2018 +0300 @@ -12,15 +12,25 @@ WGET_URL="http://www.galago-project.org/files/releases/source/notify-python/$TARBALL" BUILD_DEPENDS="python-dev libnotify-dev pygtk-dev" +SPLIT="notify-python-dev" compile_rules() { sed -i 's/, attach//;s/ attach[^;]*//;/GtkWidget .attach/d' src/pynotify.c - ./configure $CONFIGURE_ARGS && make && make DESTDIR=$DESTDIR install + ./configure $CONFIGURE_ARGS && + make && + make DESTDIR=$DESTDIR install } genpkg_rules() { - copy @std - DEPENDS="python libnotify" - TAGS="python" + case $PACKAGE in + notify-python) + copy @std + DEPENDS="python libnotify" + TAGS="python" + ;; + *-dev) + copy @dev + ;; + esac }