diff options
author | Alin Năstac <mrness@gentoo.org> | 2004-12-05 21:40:11 +0000 |
---|---|---|
committer | Alin Năstac <mrness@gentoo.org> | 2004-12-05 21:40:11 +0000 |
commit | 5ea78c4b9bcb24e51fce290f0bbae14ff8e0fad6 (patch) | |
tree | 62e1996e3ab61b662c679744df6e6caadfa2e65e /net-dialup | |
parent | Added better info to direct user how to recompile gcc if objc support is not ... (diff) | |
download | gentoo-2-5ea78c4b9bcb24e51fce290f0bbae14ff8e0fad6.tar.gz gentoo-2-5ea78c4b9bcb24e51fce290f0bbae14ff8e0fad6.tar.bz2 gentoo-2-5ea78c4b9bcb24e51fce290f0bbae14ff8e0fad6.zip |
remove dependenc of kernel-mod eclass and mark stable on x86
Diffstat (limited to 'net-dialup')
-rw-r--r-- | net-dialup/gigaset-isdn/ChangeLog | 5 | ||||
-rw-r--r-- | net-dialup/gigaset-isdn/gigaset-isdn-0.4.0.ebuild | 11 |
2 files changed, 7 insertions, 9 deletions
diff --git a/net-dialup/gigaset-isdn/ChangeLog b/net-dialup/gigaset-isdn/ChangeLog index f9ca27619673..d9e179bf9ef0 100644 --- a/net-dialup/gigaset-isdn/ChangeLog +++ b/net-dialup/gigaset-isdn/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-dialup/gigaset-isdn # Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/gigaset-isdn/ChangeLog,v 1.1 2004/11/07 21:44:26 mrness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/gigaset-isdn/ChangeLog,v 1.2 2004/12/05 21:40:11 mrness Exp $ + + 05 Dec 2004; Alin Nastac <mrness@gentoo.org> gigaset-isdn-0.4.0.ebuild: + Remove inherit kernel-mod and mark stable on x86. *gigaset-isdn-0.4.0 (07 Nov 2004) diff --git a/net-dialup/gigaset-isdn/gigaset-isdn-0.4.0.ebuild b/net-dialup/gigaset-isdn/gigaset-isdn-0.4.0.ebuild index 830636ac82d9..529a101b8a93 100644 --- a/net-dialup/gigaset-isdn/gigaset-isdn-0.4.0.ebuild +++ b/net-dialup/gigaset-isdn/gigaset-isdn-0.4.0.ebuild @@ -1,8 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/gigaset-isdn/gigaset-isdn-0.4.0.ebuild,v 1.1 2004/11/07 21:44:26 mrness Exp $ - -inherit kernel-mod +# $Header: /var/cvsroot/gentoo-x86/net-dialup/gigaset-isdn/gigaset-isdn-0.4.0.ebuild,v 1.2 2004/12/05 21:40:11 mrness Exp $ MY_P=${P/-isdn/} S=${WORKDIR}/${MY_P} @@ -13,13 +11,12 @@ DEPEND="virtual/linux-sources" SRC_URI="mirror://sourceforge/gigaset307x/${MY_P}.tar.bz2" SLOT="0" -KEYWORDS="~x86" +KEYWORDS="x86" IUSE="debug" src_compile() { - check_KV cd "${S}" - ./configure --kernel=${KV} --kerneldir=${KV_DIR} --root=${D} --prefix=/usr \ + ./configure --kernel=${KV} --root=${D} --prefix=/usr \ --with-ring `use_with debug` ( @@ -29,7 +26,6 @@ src_compile() { } src_install () { - check_KV cd "${S}" #Disable depmod while in sandbox sed -i -e 's:.*depmod :#&:' generic/post @@ -39,6 +35,5 @@ src_install () { } pkg_postinst () { - check_KV depmod -ae ${KV} } |