| 1 |
# Copyright 1999-2004 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/eclass/xemacs-packages.eclass,v 1.9 2005/07/06 20:20:04 agriffis Exp $
|
| 4 |
#
|
| 5 |
# xemacs-packages eclass inherited by all xemacs packages
|
| 6 |
# $PKG_CAT need's to be set before inheriting xemacs-packages
|
| 7 |
|
| 8 |
EXPORT_FUNCTIONS src_unpack src_install
|
| 9 |
|
| 10 |
DEPEND="virtual/xemacs"
|
| 11 |
|
| 12 |
[ -z "$HOMEPAGE" ] && HOMEPAGE="http://xemacs.org/"
|
| 13 |
[ -z "$LICENSE" ] && LICENSE="GPL-2"
|
| 14 |
|
| 15 |
case "${PKG_CAT}" in
|
| 16 |
"standard" )
|
| 17 |
MY_INSTALL_DIR="/usr/lib/xemacs/xemacs-packages" ;;
|
| 18 |
|
| 19 |
"mule" )
|
| 20 |
MY_INSTALL_DIR="/usr/lib/xemacs/mule-packages" ;;
|
| 21 |
|
| 22 |
"contrib" )
|
| 23 |
MY_INSTALL_DIR="/usr/lib/xemacs/site-packages" ;;
|
| 24 |
esac
|
| 25 |
[ -n "$DEBUG" ] && einfo "MY_INSTALL_DIR is ${MY_INSTALL_DIR}"
|
| 26 |
|
| 27 |
if [ -n "$EXPERIMENTAL" ]
|
| 28 |
then
|
| 29 |
[ -z "$SRC_URI" ] && SRC_URI="ftp://ftp.xemacs.org/beta/experimental/packages/${P}-pkg.tar.gz"
|
| 30 |
else
|
| 31 |
[ -z "$SRC_URI" ] && SRC_URI="ftp://ftp.xemacs.org/packages/${P}-pkg.tar.gz"
|
| 32 |
fi
|
| 33 |
[ -n "$DEBUG" ] && einfo "SRC_URI is ${SRC_URI}"
|
| 34 |
|
| 35 |
xemacs-packages_src_unpack() {
|
| 36 |
return 0
|
| 37 |
}
|
| 38 |
|
| 39 |
xemacs-packages_src_compile() {
|
| 40 |
einfo "Nothing to compile"
|
| 41 |
}
|
| 42 |
|
| 43 |
xemacs-packages_src_install() {
|
| 44 |
dodir ${MY_INSTALL_DIR}
|
| 45 |
cd ${D}${MY_INSTALL_DIR}
|
| 46 |
unpack ${A}
|
| 47 |
}
|