diff options
author | Achim Gottinger <achim@gentoo.org> | 2000-10-29 20:36:59 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2000-10-29 20:36:59 +0000 |
commit | 223837ed3dea57ba2541796837461d275288c5ec (patch) | |
tree | 43092ddee78e750d58ddde88418f0209d466651d /kde-base/kde-i18n | |
parent | *** empty log message *** (diff) | |
download | historical-223837ed3dea57ba2541796837461d275288c5ec.tar.gz historical-223837ed3dea57ba2541796837461d275288c5ec.tar.bz2 historical-223837ed3dea57ba2541796837461d275288c5ec.zip |
*** empty log message ***
Diffstat (limited to 'kde-base/kde-i18n')
-rw-r--r-- | kde-base/kde-i18n/kde-i18n-1.94.ebuild | 37 | ||||
-rw-r--r-- | kde-base/kde-i18n/kde-i18n-20001016.ebuild | 41 |
2 files changed, 41 insertions, 37 deletions
diff --git a/kde-base/kde-i18n/kde-i18n-1.94.ebuild b/kde-base/kde-i18n/kde-i18n-1.94.ebuild deleted file mode 100644 index f506af47d5ce..000000000000 --- a/kde-base/kde-i18n/kde-i18n-1.94.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-i18n/kde-i18n-1.94.ebuild,v 1.4 2000/10/23 11:27:15 achim Exp $ - -A=kde-i18n.tar.bz2 -S=${WORKDIR}/kde-i18n -DESCRIPTION="KDE 2Beta - libs" -SRC_URI="ftp://ftp.kde.org/pub/kde/unstable/distribution/2.0Beta5/tar/src/${A} - http://download.sourceforge.net/mirrors/kde/unstable/distribution/2.0Beta5/tar/src/${A}" -HOMEPAGE="http://www.kde.org/" - -src_unpack () { - unpack ${A} - cd ${S} - rm -r ca - -} -src_compile() { - try ./configure --prefix=/opt/kde2 --host=${CHOST} --with-ssl-dir=/usr \ - --with-qt-dir=/usr/lib/qt-x11-2.2.0 \ - --with-qt-includes=/usr/lib/qt-x11-2.2.0/include \ - --with-qt-libs=/usr/lib/qt-x11-2.2.0/lib - cp Makefile Makefile.orig - sed -e "s:br ca cy:br cy:" Makefile.orig > Makefile - try make -} - -src_install() { - try make install DESTDIR=${D} - dodoc COPYING highscore - docinto html - dodoc highscore.html -} - - - diff --git a/kde-base/kde-i18n/kde-i18n-20001016.ebuild b/kde-base/kde-i18n/kde-i18n-20001016.ebuild new file mode 100644 index 000000000000..8c2772cc2cb5 --- /dev/null +++ b/kde-base/kde-i18n/kde-i18n-20001016.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-i18n/kde-i18n-20001016.ebuild,v 1.1 2000/10/29 20:36:59 achim Exp $ + +A=kde-i18n-20001016.tar.bz2 +S=${WORKDIR}/kde-i18n +DESCRIPTION="KDE 2Beta - Language Support" +SRC_URI="ftp://ftp.kde.org/pub/kde/snapshots/current/${A} + http://download.sourceforge.net/mirrors/kde/snapshots/curren//${A}" +HOMEPAGE="http://www.kde.org/" + +src_unpack () { + unpack ${A} + cd ${S} +# rm -r ca + +} +src_compile() { + cd ${S} + rm catalog + find /usr/share/sgml -name "catalog" -print -exec install-catalog -a catalog {} \; + export SGML_CATALOG_FILES=${S}/catalog + try ./configure --prefix=/opt/kde2 --host=${CHOST} \ + --with-qt-dir=/usr/lib/qt-x11-2.2.1 \ + --with-qt-includes=/usr/lib/qt-x11-2.2.1/include \ + --with-qt-libs=/usr/lib/qt-x11-2.2.1/lib + cp Makefile Makefile.orig + sed -e "s:br ca cy:br cy:" Makefile.orig > Makefile + try SGML_CATALOG_FILES=${S}/catalog make +} + +src_install() { + try make install DESTDIR=${D} + dodoc COPYING highscore + docinto html + dodoc highscore.html +} + + + |