| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2004 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/eclass/eutils.eclass,v 1.128 2004/12/23 09:20:45 eradicator Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.142 2005/01/23 20:47:42 eradicator Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Martin Schlemmer <azarah@gentoo.org> |
5 | # Author: Martin Schlemmer <azarah@gentoo.org> |
| 6 | # |
6 | # |
| 7 | # This eclass is for general purpose functions that most ebuilds |
7 | # This eclass is for general purpose functions that most ebuilds |
| 8 | # have to implement themselves. |
8 | # have to implement themselves. |
| 9 | # |
9 | # |
| 10 | # NB: If you add anything, please comment it! |
10 | # NB: If you add anything, please comment it! |
| 11 | |
11 | |
|
|
12 | inherit multilib |
| 12 | ECLASS=eutils |
13 | ECLASS=eutils |
| 13 | INHERITED="$INHERITED $ECLASS" |
14 | INHERITED="$INHERITED $ECLASS" |
| 14 | |
15 | |
| 15 | DEPEND="!bootstrap? ( sys-devel/patch )" |
16 | DEPEND="!bootstrap? ( sys-devel/patch )" |
| 16 | |
17 | |
| … | |
… | |
| 41 | sleep 1 |
42 | sleep 1 |
| 42 | done |
43 | done |
| 43 | fi |
44 | fi |
| 44 | } |
45 | } |
| 45 | |
46 | |
| 46 | # This function simply returns the desired lib directory. With portage |
|
|
| 47 | # 2.0.51, we now have support for installing libraries to lib32/lib64 |
|
|
| 48 | # to accomidate the needs of multilib systems. It's no longer a good idea |
|
|
| 49 | # to assume all libraries will end up in lib. Replace any (sane) instances |
|
|
| 50 | # where lib is named directly with $(get_libdir) if possible. |
|
|
| 51 | # |
|
|
| 52 | # Travis Tilley <lv@gentoo.org> (24 Aug 2004) |
|
|
| 53 | # |
|
|
| 54 | # Jeremy Huddleston <eradicator@gentoo.org> (23 Dec 2004): |
|
|
| 55 | # Added support for ${ABI} and ${DEFAULT_ABI}. If they're both not set, |
|
|
| 56 | # fall back on old behavior. Any profile that has these set should also |
|
|
| 57 | # depend on a newer version of portage (not yet released) which uses these |
|
|
| 58 | # over CONF_LIBDIR in econf, dolib, etc... |
|
|
| 59 | # |
|
|
| 60 | # For now, this is restricted to the sparc64-multilib ${PROFILE_ARCH} as it |
|
|
| 61 | # is still in testing. |
|
|
| 62 | get_libdir() { |
|
|
| 63 | LIBDIR_TEST=$(type econf) |
|
|
| 64 | if [ ! -z "${CONF_LIBDIR_OVERRIDE}" ] ; then |
|
|
| 65 | # if there is an override, we want to use that... always. |
|
|
| 66 | CONF_LIBDIR="${CONF_LIBDIR_OVERRIDE}" |
|
|
| 67 | # We don't need to know the verison of portage. We only need to know |
|
|
| 68 | # if there is support for CONF_LIBDIR in econf and co. |
|
|
| 69 | # Danny van Dyk <kugelfang@gentoo.org> 2004/17/09 |
|
|
| 70 | #elif portageq has_version / '<sys-apps/portage-2.0.51_pre20' ; then |
|
|
| 71 | # # and if there isnt an override, and we're using a version of |
|
|
| 72 | # # portage without CONF_LIBDIR support, force the use of lib. dolib |
|
|
| 73 | # # and friends from portage 2.0.50 wont be too happy otherwise. |
|
|
| 74 | # CONF_LIBDIR="lib" |
|
|
| 75 | #fi |
|
|
| 76 | elif [ "${PROFILE_ARCH}" = "sparc64-multilib" ]; then # Using eradicator's LIBDIR_<abi> approach... |
|
|
| 77 | CONF_LIBDIR="$(get_abi_LIBDIR)" |
|
|
| 78 | elif [ "${LIBDIR_TEST/CONF_LIBDIR}" == "${LIBDIR_TEST}" ]; then # we don't have CONF_LIBDIR support |
|
|
| 79 | # will be <portage-2.0.51_pre20 |
|
|
| 80 | CONF_LIBDIR="lib" |
|
|
| 81 | fi |
|
|
| 82 | # and of course, default to lib if CONF_LIBDIR isnt set |
|
|
| 83 | echo ${CONF_LIBDIR:=lib} |
|
|
| 84 | unset LIBDIR_TEST |
|
|
| 85 | } |
|
|
| 86 | |
|
|
| 87 | get_multilibdir() { |
|
|
| 88 | [ "${PROFILE_ARCH}" = "sparc64-multilib" ] && die "get_multilibdir called, but it shouldn't be needed on sparc64-multilib" |
|
|
| 89 | echo ${CONF_MULTILIBDIR:=lib32} |
|
|
| 90 | } |
|
|
| 91 | |
|
|
| 92 | # Sometimes you need to override the value returned by get_libdir. A good |
|
|
| 93 | # example of this is xorg-x11, where lib32 isnt a supported configuration, |
|
|
| 94 | # and where lib64 -must- be used on amd64 (for applications that need lib |
|
|
| 95 | # to be 32bit, such as adobe acrobat). Note that this override also bypasses |
|
|
| 96 | # portage version sanity checking. |
|
|
| 97 | # get_libdir_override expects one argument, the result get_libdir should |
|
|
| 98 | # return: |
|
|
| 99 | # |
|
|
| 100 | # get_libdir_override lib64 |
|
|
| 101 | # |
|
|
| 102 | # Travis Tilley <lv@gentoo.org> (31 Aug 2004) |
|
|
| 103 | get_libdir_override() { |
|
|
| 104 | [ "${PROFILE_ARCH}" = "sparc64-multilib" ] && die "get_libdir_override called, but it shouldn't be needed on sparc64-multilib..." |
|
|
| 105 | CONF_LIBDIR="$1" |
|
|
| 106 | CONF_LIBDIR_OVERRIDE="$1" |
|
|
| 107 | } |
|
|
| 108 | |
|
|
| 109 | # This function generate linker scripts in /usr/lib for dynamic |
47 | # This function generate linker scripts in /usr/lib for dynamic |
| 110 | # libs in /lib. This is to fix linking problems when you have |
48 | # libs in /lib. This is to fix linking problems when you have |
| 111 | # the .so in /lib, and the .a in /usr/lib. What happens is that |
49 | # the .so in /lib, and the .a in /usr/lib. What happens is that |
| 112 | # in some cases when linking dynamic, the .a in /usr/lib is used |
50 | # in some cases when linking dynamic, the .a in /usr/lib is used |
| 113 | # instead of the .so in /lib due to gcc/libtool tweaking ld's |
51 | # instead of the .so in /lib due to gcc/libtool tweaking ld's |
| … | |
… | |
| 267 | |
205 | |
| 268 | echo |
206 | echo |
| 269 | eerror "Cannot find \$EPATCH_SOURCE! Value for \$EPATCH_SOURCE is:" |
207 | eerror "Cannot find \$EPATCH_SOURCE! Value for \$EPATCH_SOURCE is:" |
| 270 | eerror |
208 | eerror |
| 271 | eerror " ${EPATCH_SOURCE}" |
209 | eerror " ${EPATCH_SOURCE}" |
|
|
210 | eerror " ( ${EPATCH_SOURCE##*/} )" |
| 272 | echo |
211 | echo |
| 273 | die "Cannot find \$EPATCH_SOURCE!" |
212 | die "Cannot find \$EPATCH_SOURCE!" |
| 274 | fi |
213 | fi |
| 275 | |
214 | |
| 276 | local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
215 | local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
| … | |
… | |
| 906 | cp "${f}" ${T}/edos2unix |
845 | cp "${f}" ${T}/edos2unix |
| 907 | sed 's/\r$//' ${T}/edos2unix > "${f}" |
846 | sed 's/\r$//' ${T}/edos2unix > "${f}" |
| 908 | done |
847 | done |
| 909 | } |
848 | } |
| 910 | |
849 | |
|
|
850 | |
|
|
851 | ############################################################## |
|
|
852 | # START: Handle .desktop files and menu entries # |
|
|
853 | # maybe this should be separated into a new eclass some time # |
|
|
854 | # lanius@gentoo.org # |
|
|
855 | ############################################################## |
|
|
856 | |
| 911 | # Make a desktop file ! |
857 | # Make a desktop file ! |
| 912 | # Great for making those icons in kde/gnome startmenu ! |
858 | # Great for making those icons in kde/gnome startmenu ! |
| 913 | # Amaze your friends ! Get the women ! Join today ! |
859 | # Amaze your friends ! Get the women ! Join today ! |
| 914 | # |
860 | # |
| 915 | # make_desktop_entry(<binary>, [name], [icon], [type], [path]) |
861 | # make_desktop_entry(<binary>, [name], [icon], [type], [path]) |
| … | |
… | |
| 968 | insinto /usr/share/applications |
914 | insinto /usr/share/applications |
| 969 | doins "${desktop}" |
915 | doins "${desktop}" |
| 970 | |
916 | |
| 971 | return 0 |
917 | return 0 |
| 972 | } |
918 | } |
|
|
919 | |
|
|
920 | # Make a GDM/KDM Session file |
|
|
921 | # |
|
|
922 | # make_desktop_entry(<title>, <command>) |
|
|
923 | # title: File to execute to start the Window Manager |
|
|
924 | # command: Name of the Window Manager |
|
|
925 | |
|
|
926 | make_session_desktop() { |
|
|
927 | |
|
|
928 | [ -z "$1" ] && eerror "make_session_desktop: You must specify the title" && return 1 |
|
|
929 | [ -z "$2" ] && eerror "make_session_desktop: You must specify the command" && return 1 |
|
|
930 | |
|
|
931 | local title="${1}" |
|
|
932 | local command="${2}" |
|
|
933 | local desktop="${T}/${wm}.desktop" |
|
|
934 | |
|
|
935 | echo "[Desktop Entry] |
|
|
936 | Encoding=UTF-8 |
|
|
937 | Name=${title} |
|
|
938 | Comment=This session logs you into ${title} |
|
|
939 | Exec=${command} |
|
|
940 | TryExec=${command} |
|
|
941 | Type=Application" > "${desktop}" |
|
|
942 | |
|
|
943 | insinto /usr/share/xsessions |
|
|
944 | doins "${desktop}" |
|
|
945 | |
|
|
946 | return 0 |
|
|
947 | } |
|
|
948 | |
|
|
949 | domenu() { |
|
|
950 | local i |
|
|
951 | local j |
|
|
952 | insinto /usr/share/applications |
|
|
953 | for i in ${@} |
|
|
954 | do |
|
|
955 | if [ -f "${i}" ]; |
|
|
956 | then |
|
|
957 | doins ${i} |
|
|
958 | elif [ -d "${i}" ]; |
|
|
959 | then |
|
|
960 | for j in ${i}/*.desktop |
|
|
961 | do |
|
|
962 | doins ${j} |
|
|
963 | done |
|
|
964 | fi |
|
|
965 | done |
|
|
966 | } |
|
|
967 | |
|
|
968 | doicon() { |
|
|
969 | local i |
|
|
970 | local j |
|
|
971 | insinto /usr/share/pixmaps |
|
|
972 | for i in ${@} |
|
|
973 | do |
|
|
974 | if [ -f "${i}" ]; |
|
|
975 | then |
|
|
976 | doins ${i} |
|
|
977 | elif [ -d "${i}" ]; |
|
|
978 | then |
|
|
979 | for j in ${i}/*.png |
|
|
980 | do |
|
|
981 | doins ${j} |
|
|
982 | done |
|
|
983 | fi |
|
|
984 | done |
|
|
985 | } |
|
|
986 | |
|
|
987 | ############################################################## |
|
|
988 | # END: Handle .desktop files and menu entries # |
|
|
989 | ############################################################## |
|
|
990 | |
| 973 | |
991 | |
| 974 | # for internal use only (unpack_pdv and unpack_makeself) |
992 | # for internal use only (unpack_pdv and unpack_makeself) |
| 975 | find_unpackable_file() { |
993 | find_unpackable_file() { |
| 976 | local src="$1" |
994 | local src="$1" |
| 977 | if [ -z "${src}" ] |
995 | if [ -z "${src}" ] |
| … | |
… | |
| 1258 | export CDROM_TOTAL_CDS=${cdcnt} |
1276 | export CDROM_TOTAL_CDS=${cdcnt} |
| 1259 | export CDROM_CURRENT_CD=1 |
1277 | export CDROM_CURRENT_CD=1 |
| 1260 | |
1278 | |
| 1261 | # now we see if the user gave use CD_ROOT ... |
1279 | # now we see if the user gave use CD_ROOT ... |
| 1262 | # if they did, let's just believe them that it's correct |
1280 | # if they did, let's just believe them that it's correct |
| 1263 | if [ ! -z "${CD_ROOT}" ] ; then |
1281 | if [[ ! -z ${CD_ROOT} ]] ; then |
| 1264 | export CDROM_ROOT="${CD_ROOT}" |
1282 | export CDROM_ROOT=${CD_ROOT} |
| 1265 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
1283 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
| 1266 | return |
1284 | return |
| 1267 | fi |
1285 | fi |
| 1268 | # do the same for CD_ROOT_X |
1286 | # do the same for CD_ROOT_X |
| 1269 | if [ ! -z "${CD_ROOT_1}" ] ; then |
1287 | if [[ ! -z ${CD_ROOT_1} ]] ; then |
| 1270 | local var= |
1288 | local var= |
| 1271 | cdcnt=0 |
1289 | cdcnt=0 |
| 1272 | while [ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ] ; do |
1290 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
| 1273 | cdcnt=$((cdcnt + 1)) |
1291 | cdcnt=$((cdcnt + 1)) |
| 1274 | var="CD_ROOT_${cdcnt}" |
1292 | var="CD_ROOT_${cdcnt}" |
| 1275 | if [ -z "${!var}" ] ; then |
1293 | if [[ -z ${!var} ]] ; then |
| 1276 | eerror "You must either use just the CD_ROOT" |
1294 | eerror "You must either use just the CD_ROOT" |
| 1277 | eerror "or specify ALL the CD_ROOT_X variables." |
1295 | eerror "or specify ALL the CD_ROOT_X variables." |
| 1278 | eerror "In this case, you will need ${CDROM_TOTAL_CDS} CD_ROOT_X variables." |
1296 | eerror "In this case, you will need ${CDROM_TOTAL_CDS} CD_ROOT_X variables." |
| 1279 | die "could not locate CD_ROOT_${cdcnt}" |
1297 | die "could not locate CD_ROOT_${cdcnt}" |
| 1280 | fi |
1298 | fi |
| … | |
… | |
| 1283 | export CDROM_ROOT=${CDROM_ROOTS_1} |
1301 | export CDROM_ROOT=${CDROM_ROOTS_1} |
| 1284 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
1302 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
| 1285 | return |
1303 | return |
| 1286 | fi |
1304 | fi |
| 1287 | |
1305 | |
| 1288 | if [ ${CDROM_TOTAL_CDS} -eq 1 ] ; then |
1306 | if [[ ${CDROM_TOTAL_CDS} -eq 1 ]] ; then |
| 1289 | einfon "This ebuild will need the " |
1307 | einfon "This ebuild will need the " |
| 1290 | if [ -z "${CDROM_NAME}" ] ; then |
1308 | if [[ -z ${CDROM_NAME} ]] ; then |
| 1291 | echo "cdrom for ${PN}." |
1309 | echo "cdrom for ${PN}." |
| 1292 | else |
1310 | else |
| 1293 | echo "${CDROM_NAME}." |
1311 | echo "${CDROM_NAME}." |
| 1294 | fi |
1312 | fi |
| 1295 | echo |
1313 | echo |
| 1296 | einfo "If you do not have the CD, but have the data files" |
1314 | einfo "If you do not have the CD, but have the data files" |
| 1297 | einfo "mounted somewhere on your filesystem, just export" |
1315 | einfo "mounted somewhere on your filesystem, just export" |
| 1298 | einfo "the variable CD_ROOT so that it points to the" |
1316 | einfo "the variable CD_ROOT so that it points to the" |
| 1299 | einfo "directory containing the files." |
1317 | einfo "directory containing the files." |
| 1300 | echo |
1318 | echo |
|
|
1319 | einfo "For example:" |
|
|
1320 | einfo "export CD_ROOT=/mnt/cdrom" |
|
|
1321 | echo |
| 1301 | else |
1322 | else |
| 1302 | einfo "This package will need access to ${CDROM_TOTAL_CDS} cds." |
1323 | einfo "This package will need access to ${CDROM_TOTAL_CDS} cds." |
| 1303 | cdcnt=0 |
1324 | cdcnt=0 |
| 1304 | while [ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ] ; do |
1325 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
| 1305 | cdcnt=$((cdcnt + 1)) |
1326 | cdcnt=$((cdcnt + 1)) |
| 1306 | var="CDROM_NAME_${cdcnt}" |
1327 | var="CDROM_NAME_${cdcnt}" |
| 1307 | [ ! -z "${!var}" ] && einfo " CD ${cdcnt}: ${!var}" |
1328 | [[ ! -z ${!var} ]] && einfo " CD ${cdcnt}: ${!var}" |
| 1308 | done |
1329 | done |
| 1309 | echo |
1330 | echo |
| 1310 | einfo "If you do not have the CDs, but have the data files" |
1331 | einfo "If you do not have the CDs, but have the data files" |
| 1311 | einfo "mounted somewhere on your filesystem, just export" |
1332 | einfo "mounted somewhere on your filesystem, just export" |
| 1312 | einfo "the following variables so they point to the right place:" |
1333 | einfo "the following variables so they point to the right place:" |
| 1313 | einfon "" |
1334 | einfon "" |
| 1314 | cdcnt=0 |
1335 | cdcnt=0 |
| 1315 | while [ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ] ; do |
1336 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
| 1316 | cdcnt=$((cdcnt + 1)) |
1337 | cdcnt=$((cdcnt + 1)) |
| 1317 | echo -n " CD_ROOT_${cdcnt}" |
1338 | echo -n " CD_ROOT_${cdcnt}" |
| 1318 | done |
1339 | done |
| 1319 | echo |
1340 | echo |
| 1320 | einfo "Or, if you have all the files in the same place, or" |
1341 | einfo "Or, if you have all the files in the same place, or" |
| 1321 | einfo "you only have one cdrom, you can export CD_ROOT" |
1342 | einfo "you only have one cdrom, you can export CD_ROOT" |
| 1322 | einfo "and that place will be used as the same data source" |
1343 | einfo "and that place will be used as the same data source" |
| 1323 | einfo "for all the CDs." |
1344 | einfo "for all the CDs." |
| 1324 | echo |
1345 | echo |
|
|
1346 | einfo "For example:" |
|
|
1347 | einfo "export CD_ROOT_1=/mnt/cdrom" |
|
|
1348 | echo |
| 1325 | fi |
1349 | fi |
| 1326 | export CDROM_CURRENT_CD=0 |
1350 | export CDROM_CURRENT_CD=0 |
| 1327 | cdrom_load_next_cd |
1351 | cdrom_load_next_cd |
| 1328 | } |
1352 | } |
| 1329 | |
1353 | |
| … | |
… | |
| 1333 | # remember, you can only go forward in the cd chain, you can't go back. |
1357 | # remember, you can only go forward in the cd chain, you can't go back. |
| 1334 | cdrom_load_next_cd() { |
1358 | cdrom_load_next_cd() { |
| 1335 | export CDROM_CURRENT_CD=$((CDROM_CURRENT_CD + 1)) |
1359 | export CDROM_CURRENT_CD=$((CDROM_CURRENT_CD + 1)) |
| 1336 | local var= |
1360 | local var= |
| 1337 | |
1361 | |
| 1338 | if [ ! -z "${CD_ROOT}" ] ; then |
1362 | if [[ ! -z ${CD_ROOT} ]] ; then |
| 1339 | einfo "Using same root as before for CD #${CDROM_CURRENT_CD}" |
1363 | einfo "Using same root as before for CD #${CDROM_CURRENT_CD}" |
| 1340 | return |
1364 | return |
| 1341 | fi |
1365 | fi |
| 1342 | |
1366 | |
| 1343 | unset CDROM_ROOT |
1367 | unset CDROM_ROOT |
| 1344 | var=CDROM_ROOTS_${CDROM_CURRENT_CD} |
1368 | var=CDROM_ROOTS_${CDROM_CURRENT_CD} |
| 1345 | if [ -z "${!var}" ] ; then |
1369 | if [[ -z ${!var} ]] ; then |
| 1346 | var="CDROM_CHECK_${CDROM_CURRENT_CD}" |
1370 | var="CDROM_CHECK_${CDROM_CURRENT_CD}" |
| 1347 | cdrom_locate_file_on_cd ${!var} |
1371 | cdrom_locate_file_on_cd ${!var} |
| 1348 | else |
1372 | else |
| 1349 | export CDROM_ROOT="${!var}" |
1373 | export CDROM_ROOT=${!var} |
| 1350 | fi |
1374 | fi |
| 1351 | |
1375 | |
| 1352 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
1376 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
| 1353 | } |
1377 | } |
| 1354 | |
1378 | |
| … | |
… | |
| 1358 | # found, then a message asking for the user to insert the cdrom will be |
1382 | # found, then a message asking for the user to insert the cdrom will be |
| 1359 | # displayed and we'll hang out here until: |
1383 | # displayed and we'll hang out here until: |
| 1360 | # (1) the file is found on a mounted cdrom |
1384 | # (1) the file is found on a mounted cdrom |
| 1361 | # (2) the user hits CTRL+C |
1385 | # (2) the user hits CTRL+C |
| 1362 | cdrom_locate_file_on_cd() { |
1386 | cdrom_locate_file_on_cd() { |
| 1363 | while [ -z "${CDROM_ROOT}" ] ; do |
1387 | while [[ -z ${CDROM_ROOT} ]] ; do |
| 1364 | local dir="$(dirname ${@})" |
1388 | local dir="$(dirname ${@})" |
| 1365 | local file="$(basename ${@})" |
1389 | local file="$(basename ${@})" |
| 1366 | local mline="" |
1390 | local mline="" |
| 1367 | local showedmsg=0 |
1391 | local showedmsg=0 |
| 1368 | |
1392 | |
| 1369 | for mline in `mount | egrep -e '(iso|cdrom)' | awk '{print $3}'` ; do |
1393 | for mline in $(mount | egrep -e '(iso|cdrom)' | awk '{print $3}') ; do |
| 1370 | [ -d "${mline}/${dir}" ] || continue |
1394 | [[ -d ${mline}/${dir} ]] || continue |
| 1371 | [ ! -z "$(find ${mline}/${dir} -iname ${file} -maxdepth 1)" ] \ |
1395 | [[ ! -z $(find ${mline}/${dir} -iname ${file} -maxdepth 1) ]] \ |
| 1372 | && export CDROM_ROOT=${mline} |
1396 | && export CDROM_ROOT=${mline} |
| 1373 | done |
1397 | done |
| 1374 | |
1398 | |
| 1375 | if [ -z "${CDROM_ROOT}" ] ; then |
1399 | if [[ -z ${CDROM_ROOT} ]] ; then |
| 1376 | echo |
1400 | echo |
| 1377 | if [ ${showedmsg} -eq 0 ] ; then |
1401 | if [[ ${showedmsg} -eq 0 ]] ; then |
| 1378 | if [ ${CDROM_TOTAL_CDS} -eq 1 ] ; then |
1402 | if [[ ${CDROM_TOTAL_CDS} -eq 1 ]] ; then |
| 1379 | if [ -z "${CDROM_NAME}" ] ; then |
1403 | if [[ -z ${CDROM_NAME} ]] ; then |
| 1380 | einfo "Please insert the cdrom for ${PN} now !" |
1404 | einfo "Please insert the cdrom for ${PN} now !" |
| 1381 | else |
1405 | else |
| 1382 | einfo "Please insert the ${CDROM_NAME} cdrom now !" |
1406 | einfo "Please insert the ${CDROM_NAME} cdrom now !" |
| 1383 | fi |
1407 | fi |
| 1384 | else |
1408 | else |
| 1385 | if [ -z "${CDROM_NAME_1}" ] ; then |
1409 | if [[ -z ${CDROM_NAME_1} ]] ; then |
| 1386 | einfo "Please insert cd #${CDROM_CURRENT_CD} for ${PN} now !" |
1410 | einfo "Please insert cd #${CDROM_CURRENT_CD} for ${PN} now !" |
| 1387 | else |
1411 | else |
| 1388 | local var="CDROM_NAME_${CDROM_CURRENT_CD}" |
1412 | local var="CDROM_NAME_${CDROM_CURRENT_CD}" |
| 1389 | einfo "Please insert+mount the ${!var} cdrom now !" |
1413 | einfo "Please insert+mount the ${!var} cdrom now !" |
| 1390 | fi |
1414 | fi |
| … | |
… | |
| 1458 | # the following functions are useful in kernel module ebuilds, etc. |
1482 | # the following functions are useful in kernel module ebuilds, etc. |
| 1459 | # for an example see ivtv or drbd ebuilds |
1483 | # for an example see ivtv or drbd ebuilds |
| 1460 | |
1484 | |
| 1461 | # set's ARCH to match what the kernel expects |
1485 | # set's ARCH to match what the kernel expects |
| 1462 | set_arch_to_kernel() { |
1486 | set_arch_to_kernel() { |
|
|
1487 | i=10 |
|
|
1488 | while ((i--)) ; do |
|
|
1489 | ewarn "PLEASE UPDATE TO YOUR PACKAGE TO USE linux-info.eclass" |
|
|
1490 | done |
| 1463 | export EUTILS_ECLASS_PORTAGE_ARCH="${ARCH}" |
1491 | export EUTILS_ECLASS_PORTAGE_ARCH="${ARCH}" |
| 1464 | case ${ARCH} in |
1492 | case ${ARCH} in |
| 1465 | x86) export ARCH="i386";; |
1493 | x86) export ARCH="i386";; |
| 1466 | amd64) export ARCH="x86_64";; |
1494 | amd64) export ARCH="x86_64";; |
| 1467 | hppa) export ARCH="parisc";; |
1495 | hppa) export ARCH="parisc";; |
| 1468 | mips) export ARCH="mips";; |
1496 | mips) export ARCH="mips";; |
|
|
1497 | sparc) export ARCH="$(tc-arch-kernel)";; # Yeah this is ugly, but it's even WORSE if you don't do this. linux-info.eclass's set_arch_to_kernel is fixed, but won't get used over this one! |
| 1469 | *) export ARCH="${ARCH}";; |
1498 | *) export ARCH="${ARCH}";; |
| 1470 | esac |
1499 | esac |
| 1471 | } |
1500 | } |
| 1472 | |
1501 | |
| 1473 | # set's ARCH back to what portage expects |
1502 | # set's ARCH back to what portage expects |
| 1474 | set_arch_to_portage() { |
1503 | set_arch_to_portage() { |
|
|
1504 | i=10 |
|
|
1505 | while ((i--)) ; do |
|
|
1506 | ewarn "PLEASE UPDATE TO YOUR PACKAGE TO USE linux-info.eclass" |
|
|
1507 | done |
| 1475 | export ARCH="${EUTILS_ECLASS_PORTAGE_ARCH}" |
1508 | export ARCH="${EUTILS_ECLASS_PORTAGE_ARCH}" |
| 1476 | } |
1509 | } |
| 1477 | |
1510 | |
| 1478 | # Jeremy Huddleston <eradicator@gentoo.org>: |
1511 | # Jeremy Huddleston <eradicator@gentoo.org>: |
| 1479 | # preserve_old_lib /path/to/libblah.so.0 |
1512 | # preserve_old_lib /path/to/libblah.so.0 |
| … | |
… | |
| 1509 | touch ${D}${LIB} |
1542 | touch ${D}${LIB} |
| 1510 | fi |
1543 | fi |
| 1511 | } |
1544 | } |
| 1512 | |
1545 | |
| 1513 | preserve_old_lib_notify() { |
1546 | preserve_old_lib_notify() { |
| 1514 | LIB=$1 |
1547 | LIB=$1 |
| 1515 | |
1548 | |
| 1516 | if [ -n "${LIB}" -a -f "${ROOT}${LIB}" ]; then |
1549 | if [ -n "${LIB}" -a -f "${ROOT}${LIB}" ]; then |
| 1517 | SONAME=`basename ${LIB}` |
1550 | SONAME=`basename ${LIB}` |
| 1518 | |
1551 | |
| 1519 | einfo "An old version of an installed library was detected on your system." |
1552 | einfo "An old version of an installed library was detected on your system." |
| 1520 | einfo "In order to avoid breaking packages that link against is, this older version" |
1553 | einfo "In order to avoid breaking packages that link against is, this older version" |
| 1521 | einfo "is not being removed. In order to make full use of this newer version," |
1554 | einfo "is not being removed. In order to make full use of this newer version," |
| 1522 | einfo "you will need to execute the following command:" |
1555 | einfo "you will need to execute the following command:" |
| 1523 | einfo " revdep-rebuild --soname ${SONAME}" |
1556 | einfo " revdep-rebuild --soname ${SONAME}" |
| 1524 | einfo |
1557 | einfo |
| 1525 | einfo "After doing that, you can safely remove ${LIB}" |
1558 | einfo "After doing that, you can safely remove ${LIB}" |
| 1526 | einfo "Note: 'emerge gentoolkit' to get revdep-rebuild" |
1559 | einfo "Note: 'emerge gentoolkit' to get revdep-rebuild" |
| 1527 | fi |
1560 | fi |
| 1528 | } |
1561 | } |
| 1529 | |
1562 | |
| 1530 | # Hack for people to figure out if a package was built with |
1563 | # Hack for people to figure out if a package was built with |
| 1531 | # certain USE flags |
1564 | # certain USE flags |
| 1532 | # |
1565 | # |
| 1533 | # Usage: built_with_use <DEPEND ATOM> <List of USE flags> |
1566 | # Usage: built_with_use [-a|-o] <DEPEND ATOM> <List of USE flags> |
| 1534 | # ex: built_with_use xchat gtk2 |
1567 | # ex: built_with_use xchat gtk2 |
|
|
1568 | # |
|
|
1569 | # Flags: -a all USE flags should be utilized |
|
|
1570 | # -o at least one USE flag should be utilized |
|
|
1571 | # Note: the default flag is '-a' |
| 1535 | built_with_use() { |
1572 | built_with_use() { |
|
|
1573 | local opt=$1 |
|
|
1574 | [[ ${opt:0:1} = "-" ]] && shift || opt="-a" |
|
|
1575 | |
| 1536 | local PKG=$(portageq best_version ${ROOT} $1) |
1576 | local PKG=$(best_version $1) |
|
|
1577 | shift |
|
|
1578 | |
| 1537 | local USEFILE="${ROOT}/var/db/pkg/${PKG}/USE" |
1579 | local USEFILE="${ROOT}/var/db/pkg/${PKG}/USE" |
| 1538 | [[ ! -e ${USEFILE} ]] && return 1 |
1580 | [[ ! -e ${USEFILE} ]] && return 1 |
| 1539 | |
1581 | |
| 1540 | local USE_BUILT=$(<${USEFILE}) |
1582 | local USE_BUILT=$(<${USEFILE}) |
| 1541 | |
|
|
| 1542 | shift |
|
|
| 1543 | while [ $# -gt 0 ] ; do |
1583 | while [[ $# -gt 0 ]] ; do |
|
|
1584 | if [[ ${opt} = "-o" ]] ; then |
|
|
1585 | has $1 ${USE_BUILT} && return 0 |
|
|
1586 | else |
| 1544 | has $1 ${USE_BUILT} || return 1 |
1587 | has $1 ${USE_BUILT} || return 1 |
|
|
1588 | fi |
| 1545 | shift |
1589 | shift |
| 1546 | done |
1590 | done |
| 1547 | return 0 |
1591 | [[ ${opt} = "-a" ]] |
| 1548 | } |
1592 | } |
| 1549 | |
1593 | |
| 1550 | # Many configure scripts wrongly bail when a C++ compiler |
1594 | # Many configure scripts wrongly bail when a C++ compiler |
| 1551 | # could not be detected. #73450 |
1595 | # could not be detected. #73450 |
| 1552 | epunt_cxx() { |
1596 | epunt_cxx() { |
| … | |
… | |
| 1557 | for f in $(find ${dir} -name configure) ; do |
1601 | for f in $(find ${dir} -name configure) ; do |
| 1558 | patch -p0 "${f}" "${PORTDIR}/eclass/ELT-patches/nocxx/nocxx.patch" > /dev/null |
1602 | patch -p0 "${f}" "${PORTDIR}/eclass/ELT-patches/nocxx/nocxx.patch" > /dev/null |
| 1559 | done |
1603 | done |
| 1560 | eend 0 |
1604 | eend 0 |
| 1561 | } |
1605 | } |
| 1562 | |
|
|
| 1563 | # get_abi_var <VAR> [<ABI>] |
|
|
| 1564 | # returns the value of ${<VAR>_<ABI>} which should be set in make.defaults |
|
|
| 1565 | # |
|
|
| 1566 | # This code is for testing purposes only with the sparc64-multilib ${PROFILE_ARCH} |
|
|
| 1567 | # and getting a more multilib-aware portage layout. It may end up being used, but for now |
|
|
| 1568 | # it is subject to removal if a better way is worked out. |
|
|
| 1569 | # |
|
|
| 1570 | # ex: |
|
|
| 1571 | # CFLAGS=$(get_abi_var CFLAGS sparc32) # CFLAGS=-m32 |
|
|
| 1572 | # |
|
|
| 1573 | # Note that the prefered method is to set CC="$(tc-getCC) $(get_abi_CFLAGS)" |
|
|
| 1574 | # This will hopefully be added to portage soon... |
|
|
| 1575 | # |
|
|
| 1576 | # If <ABI> is not specified, ${ABI} is used. |
|
|
| 1577 | # If <ABI> is not specified and ${ABI} is not defined, ${DEFAULT_ABI} is used. |
|
|
| 1578 | # If <ABI> is not specified and ${ABI} and ${DEFAULT_ABI} are not defined, we return an empty string. |
|
|
| 1579 | # |
|
|
| 1580 | # Jeremy Huddleston <eradicator@gentoo.org> |
|
|
| 1581 | get_abi_var() { |
|
|
| 1582 | local flag=$1 |
|
|
| 1583 | local abi |
|
|
| 1584 | if [ $# -gt 1 ]; then |
|
|
| 1585 | abi=$1 |
|
|
| 1586 | elif [ -n "${ABI}" ]; then |
|
|
| 1587 | abi=${ABI} |
|
|
| 1588 | elif [ -n "${DEFAULT_ABI}" ]; then |
|
|
| 1589 | abi=${DEFAULT_ABI} |
|
|
| 1590 | else |
|
|
| 1591 | return "" |
|
|
| 1592 | fi |
|
|
| 1593 | eval echo \${${flag}_${abi}} |
|
|
| 1594 | } |
|
|
| 1595 | |
|
|
| 1596 | get_abi_CFLAGS() { get_abi_var CFLAGS $1; } |
|
|
| 1597 | get_abi_CXXFLAGS() { get_abi_var CXXFLAGS $1; } |
|
|
| 1598 | get_abi_ASFLAGS() { get_abi_var ASFLAGS $1; } |
|
|
| 1599 | get_abi_LIBDIR() { get_abi_var LIBDIR $1; } |
|
|
| 1600 | |
|
|