diff options
Diffstat (limited to 'recipes/debianutils')
-rw-r--r-- | recipes/debianutils/debianutils.inc | 35 | ||||
-rw-r--r-- | recipes/debianutils/debianutils_2.17.3.bb | 1 | ||||
-rw-r--r-- | recipes/debianutils/debianutils_2.19.bb | 5 | ||||
-rw-r--r-- | recipes/debianutils/debianutils_2.30.bb | 5 |
4 files changed, 46 insertions, 0 deletions
diff --git a/recipes/debianutils/debianutils.inc b/recipes/debianutils/debianutils.inc new file mode 100644 index 0000000000..35ef03d14f --- /dev/null +++ b/recipes/debianutils/debianutils.inc @@ -0,0 +1,35 @@ +SECTION = "base" +LICENSE = "GPL BSD BSD SMAIL" +DESCRIPTION = "Miscellaneous utilities specific to Debian" + +SRC_URI = "${DEBIAN_MIRROR}/main/d/${PN}/${PN}_${PV}.tar.gz" + +inherit autotools + +do_install_append() { + for app in ${D}/${sbindir}/* ${D}/${bindir}/*; do + mv $app $app.${PN} + done +} + +pkg_postinst_${PN} () { +#!/bin/sh +for app in add-shell installkernel mkboot remove-shell ; do + update-alternatives --install ${sbindir}/$app $app $app.${PN} 100 +done + +for app in run-parts savelog sensible-browser sensible-editor sensible-pager tempfile which ; do + update-alternatives --install ${bindir}/$app $app $app.${PN} 100 +done +} + +pkg_prerm_${PN} () { + #!/bin/sh + +for app in add-shell installkernel mkboot remove-shell run-parts savelog sensible-browser sensible-editor sensible-pager tempfile which ; do + update-alternatives --remove $app $app.${PN} +done +} + + + diff --git a/recipes/debianutils/debianutils_2.17.3.bb b/recipes/debianutils/debianutils_2.17.3.bb new file mode 100644 index 0000000000..90dc5116b5 --- /dev/null +++ b/recipes/debianutils/debianutils_2.17.3.bb @@ -0,0 +1 @@ +require debianutils.inc diff --git a/recipes/debianutils/debianutils_2.19.bb b/recipes/debianutils/debianutils_2.19.bb new file mode 100644 index 0000000000..7569797f93 --- /dev/null +++ b/recipes/debianutils/debianutils_2.19.bb @@ -0,0 +1,5 @@ +# Copyright (C) 2007, Stelios Koroneos - Digital OPSiS, All Rights Reserved +# Released under the MIT license (see packages/COPYING) + +require debianutils.inc +PR ="r0" diff --git a/recipes/debianutils/debianutils_2.30.bb b/recipes/debianutils/debianutils_2.30.bb new file mode 100644 index 0000000000..a15c8079b5 --- /dev/null +++ b/recipes/debianutils/debianutils_2.30.bb @@ -0,0 +1,5 @@ +# Copyright (C) 2007, Stelios Koroneos - Digital OPSiS, All Rights Reserved +# Released under the MIT license (see packages/COPYING) + +require debianutils.inc +PR="r1" |