diff options
author | Dan Armak <danarmak@gentoo.org> | 2001-10-01 11:04:22 +0000 |
---|---|---|
committer | Dan Armak <danarmak@gentoo.org> | 2001-10-01 11:04:22 +0000 |
commit | eeaa105921a7f1d53ba72d958656f91e1d7ce61d (patch) | |
tree | a9b324d616e8659af477ae426d5ce90745a49e80 /eclass/kde-i18n.eclass | |
parent | updated to 0.10.3 (diff) | |
download | historical-eeaa105921a7f1d53ba72d958656f91e1d7ce61d.tar.gz historical-eeaa105921a7f1d53ba72d958656f91e1d7ce61d.tar.bz2 historical-eeaa105921a7f1d53ba72d958656f91e1d7ce61d.zip |
eclasses v3. read the gentoo-dev announcement, and news.txt and howto.*
in doc/.
Diffstat (limited to 'eclass/kde-i18n.eclass')
-rw-r--r-- | eclass/kde-i18n.eclass | 43 |
1 files changed, 2 insertions, 41 deletions
diff --git a/eclass/kde-i18n.eclass b/eclass/kde-i18n.eclass index 43877c3ad2df..5d59e757d550 100644 --- a/eclass/kde-i18n.eclass +++ b/eclass/kde-i18n.eclass @@ -1,55 +1,16 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Dan Armak <danarmak@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/eclass/kde-i18n.eclass,v 1.2 2001/09/30 21:43:05 danarmak Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde-i18n.eclass,v 1.3 2001/10/01 11:04:22 danarmak Exp $ . /usr/portage/eclass/inherit.eclass || die -inherit autoconf base || die +inherit kde kde.org || die ECLASS=kde-i18n -A=${P}.tar.bz2 S=${WORKDIR}/${PN} DESCRIPTION="KDE ${PV} - i18n: ${PN}" -SRC_PATH="kde/stable/${PV}/src/${A}" -SRC_URI="ftp://ftp.kde.org/pub/$SRC_PATH - ftp://ftp.fh-heilbronn.de/pub/mirrors/$SRC_PATH - ftp://ftp.sourceforge.net/pub/mirrors/$SRC_PATH" - HOMEPAGE="http://www.kde.org/" DEPEND=">=kde-base/kdelibs-${PV}" PROVIDE="virtual/kde-i18n-${PV}" -kde-i18n_src_compile() { - - echo "in kde-i18n_src_compile, 1st parameter is $1" - [ $1="" ] && kde-i18n_src_compile all - - while [ "$1" ]; do - - case $1 in - configure) - echo "in kde-i18n_src_compile, action configure" - ./configure --host=${CHOST} || die - ;; - make) - echo "in kde-i18n_src_compile, action make" - make || die - ;; - all) - echo "in kde-i18n_src_compile, action all" - kde-i18n_src_compile all - ;; - esac - - shift - done - -} - -kde-i18n_src_install() { - echo "in kde-i18n_src_compile, single function" - make install DESTDIR=${D} || die -} - - |