2011-07-10 13:34:30 +10:00
|
|
|
# Description: A wired and wireless network manager.
|
2020-06-01 15:45:48 +00:00
|
|
|
# URL: https://launchpad.net/wicd
|
2014-11-10 23:28:07 +11:00
|
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
2019-05-04 19:13:08 +10:00
|
|
|
# Depends on: dbus-python mii-tool pygtk wireless-tools wpa_supplicant
|
2011-07-10 13:34:30 +10:00
|
|
|
|
2016-09-19 08:04:32 +10:00
|
|
|
name=wicd
|
2019-05-04 19:13:08 +10:00
|
|
|
version=1.7.4
|
|
|
|
release=1
|
|
|
|
source=(https://launchpad.net/wicd/${version%.*}/$version/+download/$name-$version.tar.gz
|
2013-06-30 20:43:35 +10:00
|
|
|
wicd.rc
|
2019-05-04 19:13:08 +10:00
|
|
|
wicd-1.7.3-bitrate-property.patch
|
|
|
|
wicd-1.7.3-undefined-LANG.patch
|
|
|
|
wicd-1.7.3-urwid-1.3.0.patch)
|
2011-07-10 13:34:30 +10:00
|
|
|
|
2011-08-21 11:24:41 +10:00
|
|
|
build() {
|
2011-07-10 13:34:30 +10:00
|
|
|
cd $name-$version
|
|
|
|
|
2019-05-04 19:13:08 +10:00
|
|
|
patch -p1 -i $SRC/wicd-1.7.3-bitrate-property.patch
|
|
|
|
patch -p1 -i $SRC/wicd-1.7.3-undefined-LANG.patch
|
|
|
|
patch -p1 -i $SRC/wicd-1.7.3-urwid-1.3.0.patch
|
2013-06-30 20:43:35 +10:00
|
|
|
|
2013-02-25 22:55:56 +11:00
|
|
|
# really don't use NLS
|
2019-05-04 19:13:08 +10:00
|
|
|
rm po/*.po
|
2013-02-25 22:55:56 +11:00
|
|
|
|
2014-01-27 18:57:53 +11:00
|
|
|
/usr/bin/python setup.py configure \
|
2013-02-25 22:55:56 +11:00
|
|
|
--etc=/etc/wicd \
|
2019-05-04 19:13:08 +10:00
|
|
|
--dbus=/usr/etc/dbus-1/system.d \
|
|
|
|
--no-install-kde \
|
2014-06-04 21:14:34 +10:00
|
|
|
--no-install-acpi \
|
2019-05-04 19:13:08 +10:00
|
|
|
--no-install-pmutils \
|
|
|
|
--no-install-init \
|
2013-02-25 22:55:56 +11:00
|
|
|
--no-install-i18n-man \
|
2019-05-04 19:13:08 +10:00
|
|
|
--no-install-docs \
|
|
|
|
--no-install-gnome-shell-extensions
|
2011-07-10 13:34:30 +10:00
|
|
|
|
2019-05-04 19:13:08 +10:00
|
|
|
/usr/bin/python setup.py build
|
2014-01-27 18:57:53 +11:00
|
|
|
/usr/bin/python setup.py install --root=$PKG
|
|
|
|
/usr/bin/python -mcompileall $PKG
|
2012-04-04 12:27:38 +10:00
|
|
|
|
2019-05-04 19:13:08 +10:00
|
|
|
install -m 0744 -D $SRC/wicd.rc $PKG/etc/rc.d/wicd
|
2011-07-10 13:34:30 +10:00
|
|
|
}
|