diff --git a/srcpkgs/iotop/template b/srcpkgs/iotop/template index 5834d899c09..3f4906ef387 100644 --- a/srcpkgs/iotop/template +++ b/srcpkgs/iotop/template @@ -1,6 +1,6 @@ # Template file for 'iotop' pkgname=iotop -version=0.5 +version=0.6 revision=1 build_style=python-module makedepends="python>=2.7" @@ -9,7 +9,7 @@ maintainer="Juan RP " license="GPL-2" homepage="http://guichaz.free.fr/iotop" distfiles="http://guichaz.free.fr/iotop/files/iotop-${version}.tar.bz2" -checksum=761b7b34b88a6b4715927f5319cf0b775e15aa70f43c69dcb805b0e49da1a2e9 +checksum=3adea2a24eda49bbbaeb4e6ed2042355b441dbd7161e883067a02bfc8dcef75b iotop_package() { depends="${makedepends}" diff --git a/srcpkgs/linux3.8/template b/srcpkgs/linux3.8/template index 03f3dab8e8f..1e08bd12d53 100644 --- a/srcpkgs/linux3.8/template +++ b/srcpkgs/linux3.8/template @@ -27,7 +27,11 @@ do_configure() { arch=x86_64 fi - if [ -f ${FILESDIR}/${arch}-dotconfig ]; then + if [ -f ${FILESDIR}/${arch}-dotconfig-custom ]; then + msg_normal "Detected a custom .config file for your arch, using it.\n" + cp -f ${FILESDIR}/${arch}-dotconfig-custom .config + make ${makejobs} oldconfig + elif [ -f ${FILESDIR}/${arch}-dotconfig ]; then msg_normal "Detected a .config file for your arch, using it.\n" cp -f ${FILESDIR}/${arch}-dotconfig .config make ${makejobs} oldconfig diff --git a/srcpkgs/linux3.9/template b/srcpkgs/linux3.9/template index 3e47e46a8f4..1174a081d21 100644 --- a/srcpkgs/linux3.9/template +++ b/srcpkgs/linux3.9/template @@ -27,7 +27,11 @@ do_configure() { arch=x86_64 fi - if [ -f ${FILESDIR}/${arch}-dotconfig ]; then + if [ -f ${FILESDIR}/${arch}-dotconfig-custom ]; then + msg_normal "Detected a custom .config file for your arch, using it.\n" + cp -f ${FILESDIR}/${arch}-dotconfig-custom .config + make ${makejobs} oldconfig + elif [ -f ${FILESDIR}/${arch}-dotconfig ]; then msg_normal "Detected a .config file for your arch, using it.\n" cp -f ${FILESDIR}/${arch}-dotconfig .config make ${makejobs} oldconfig