| OLD | NEW |
| 1 # Copyright 1999-2010 Gentoo Foundation | 1 # Copyright 1999-2010 Gentoo Foundation |
| 2 # Distributed under the terms of the GNU General Public License v2 | 2 # Distributed under the terms of the GNU General Public License v2 |
| 3 # $Header: /var/cvsroot/gentoo-x86/x11-misc/xkeyboard-config/xkeyboard-config-1.
7.ebuild,v 1.11 2010/01/19 20:28:30 armin76 Exp $ | 3 # $Header: /var/cvsroot/gentoo-x86/x11-misc/xkeyboard-config/xkeyboard-config-1.
7.ebuild,v 1.11 2010/01/19 20:28:30 armin76 Exp $ |
| 4 | 4 |
| 5 EAPI="2" | 5 EAPI="2" |
| 6 SRC_URI="http://xlibs.freedesktop.org/xkbdesc/${P}.tar.bz2" | 6 SRC_URI="http://xlibs.freedesktop.org/xkbdesc/${P}.tar.bz2" |
| 7 | 7 |
| 8 inherit autotools eutils | 8 inherit autotools eutils |
| 9 | 9 |
| 10 DESCRIPTION="X keyboard configuration database" | 10 DESCRIPTION="X keyboard configuration database" |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 # Generate xkeyboard_config_version.h to let libcros know the version | 68 # Generate xkeyboard_config_version.h to let libcros know the version |
| 69 # of the xkeyboard-config package. libcros uses the information to | 69 # of the xkeyboard-config package. libcros uses the information to |
| 70 # generate a keyboard layout name (e.g. "us+chromeos(..)+version(..)".) | 70 # generate a keyboard layout name (e.g. "us+chromeos(..)+version(..)".) |
| 71 # TODO(yusukes,jrbarnette): We should also remove this header file when | 71 # TODO(yusukes,jrbarnette): We should also remove this header file when |
| 72 # the MeeGo patch is fixed. | 72 # the MeeGo patch is fixed. |
| 73 python "${FILESDIR}"/gen_version_files.py --version="${PVR}" \ | 73 python "${FILESDIR}"/gen_version_files.py --version="${PVR}" \ |
| 74 --format="cpp" > "${T}/xkeyboard_config_version.h" || die | 74 --format="cpp" > "${T}/xkeyboard_config_version.h" || die |
| 75 insinto /usr/include | 75 insinto /usr/include |
| 76 doins "${T}/xkeyboard_config_version.h" | 76 doins "${T}/xkeyboard_config_version.h" |
| 77 } | 77 } |
| OLD | NEW |