Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 364341 - x11-wm/awesome-3.4.9.ebuild: needs fixes for removing -export-dynamic, adding -liconv
Summary: x11-wm/awesome-3.4.9.ebuild: needs fixes for removing -export-dynamic, adding...
Status: RESOLVED OBSOLETE
Alias: None
Product: Gentoo/Alt
Classification: Unclassified
Component: Prefix Support (show other bugs)
Hardware: x86 OS X
: High normal (vote)
Assignee: Gentoo Prefix
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-04-21 11:34 UTC by Leho Kraav (:macmaN @lkraav)
Modified: 2015-12-07 13:10 UTC (History)
2 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments
awesome-3.4.9-darwin-export-dynamic.patch (awesome-3.4.9-darwin-export-dynamic.patch,437 bytes, text/plain)
2011-04-21 11:34 UTC, Leho Kraav (:macmaN @lkraav)
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Leho Kraav (:macmaN @lkraav) 2011-04-21 11:34:23 UTC
Created attachment 270767 [details]
awesome-3.4.9-darwin-export-dynamic.patch

$ emerge --info
Portage 2.2.01.18252-prefix (prefix/darwin/macos/10.5/x86, gcc-4.2.1, unavailable, 9.8.0 i386)
=================================================================
System uname: Darwin-9.8.0-i386-32bit
Timestamp of tree: Wed, 20 Apr 2011 20:39:32 +0000
distcc 2.18.5-Apple.1 i386-apple-darwin9.0 (protocols 1 and 2) (default port 3632) [disabled]
app-shells/bash:     4.0_p35
dev-java/java-config: 2.1.9-r1
dev-lang/python:     2.6.5-r2
dev-util/cmake:      2.8.4-r1
sys-devel/autoconf:  2.63-r01.1
sys-devel/automake:  1.10.2-r00.1, 1.11
sys-devel/gcc-config: 1.4.1-r00.2
sys-devel/libtool:   2.2.6b
sys-devel/make:      3.81-r00.1
virtual/os-headers:  0
Repositories: gentoo_prefix LK-Gentoo-Overlay
Installed sets: 
ACCEPT_KEYWORDS="~x86-macos"
ACCEPT_LICENSE="*"
CBUILD="i686-apple-darwin9"
CFLAGS="-O2 -pipe -march=nocona"
CHOST="i686-apple-darwin9"
CONFIG_PROTECT="/etc"
CONFIG_PROTECT_MASK="/etc/ca-certificates.conf /etc/env.d /etc/env.d/java/ /etc/fonts/fonts.conf /etc/gconf /etc/portage /etc/revdep-rebuild /etc/terminfo /etc/texmf/language.dat.d /etc/texmf/language.def.d /etc/texmf/updmap.d /etc/texmf/web2c"
CXXFLAGS="-O2 -pipe -march=nocona"
DISTDIR="/Volumes/gentoo/distfiles"
FEATURES="assume-digests binpkg-logs buildpkg collision-protect distlocks fixlafiles fixpackages news nostrip parallel-fetch preserve-libs protect-owned sfperms strict unknown-features-warn unmerge-logs unmerge-orphans userfetch"
FFLAGS=""
GENTOO_MIRRORS="http://trumpetti.atm.tut.fi/gentoo/ ftp://trumpetti.atm.tut.fi/gentoo/"
LANG="et_EE.UTF-8"
LDFLAGS="-Wl,-dead_strip_dylibs"
LINGUAS="et"
MAKEOPTS="-j3"
PKGDIR="/Volumes/gentoo/packages/os-x"
PORTAGE_CONFIGROOT="/opt/prefix/"
PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --compress --force --whole-file --delete --stats --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages"
PORTAGE_TMPDIR="/opt/prefix/var/tmp"
PORTDIR="/Volumes/gentoo/prefix"
PORTDIR_OVERLAY="/Volumes/gentoo/overlays/layman/leho"
SYNC="rsync://rsync.prefix.freens.org/gentoo-portage-prefix"
USE="X aqua bash-completion coreaudio cracklib cxx dbus gnutls ipv6 mmx mmxext modules ncurses nls objc objc++ prefix readline sse sse2 ssl unicode vim-syntax x86-macos zlib" APACHE2_MODULES="actions alias auth_basic authn_alias authn_anon authn_dbm authn_default authn_file authz_dbm authz_default authz_groupfile authz_host authz_owner authz_user autoindex cache cgi cgid dav dav_fs dav_lock deflate dir disk_cache env expires ext_filter file_cache filter headers include info log_config logio mem_cache mime mime_magic negotiation rewrite setenvif speling status unique_id userdir usertrack vhost_alias" CAMERAS="ptp2" COLLECTD_PLUGINS="df interface irq load memory rrdtool swap syslog" ELIBC="Darwin" GPSD_PROTOCOLS="ashtech aivdm earthmate evermore fv18 garmin garmintxt gpsclock itrax mtk3301 nmea ntrip navcom oceanserver oldstyle oncore rtcm104v2 rtcm104v3 sirf superstar2 timing tsip tripmate tnt ubx" INPUT_DEVICES="keyboard mouse" KERNEL="Darwin" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LINGUAS="et" PHP_TARGETS="php5-3" RUBY_TARGETS="ruby18" USERLAND="GNU" XTABLES_ADDONS="quota2 psd pknock lscan length2 ipv4options ipset ipp2p iface geoip fuzzy condition tee tarpit sysrq steal rawnat logmark ipmark dhcpmac delude chaos account" 
Unset:  CPPFLAGS, CTARGET, EMERGE_DEFAULT_OPTS, INSTALL_MASK, LC_ALL, PORTAGE_BUNZIP2_COMMAND, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS

awesome-3.4.9 fails in two linking spots:
 * CMakeFile has -export-dynamic which isn't recognized by ld
 * Undefined symbols:
  "_libiconv_open", referenced from:
      _draw_iso2utf8 in draw.c.o
  "_libiconv", referenced from:
      _draw_iso2utf8 in draw.c.o
  ld: symbol(s) not found
  collect2: ld returned 1 exit status 

i have got a successful compile by doing the following:

 1. -export-dynamic patching CMakeFile with attached patch
 2. echo 'export LDFLAGS="${LDFLAGS} -liconv"' > /opt/prefix/etc/portage/env/x11-wm/awesome
Comment 2 Leho Kraav (:macmaN @lkraav) 2011-04-23 13:51:59 UTC
lovely, didnt even think to look there.. so what does this mean for the package on non-linux platforms? i havent actually tried running my binary yet :)
Comment 3 Fabian Groffen gentoo-dev 2011-04-23 13:57:06 UTC
it means we need to extract a whole bunch of patches (the rpath one too for linux) before this thing is going to behave... bah
Comment 4 michal.halenka 2015-11-29 12:45:17 UTC
x11-wm/awesome-3.4.9 is no longer in portage
Comment 5 Leho Kraav (:macmaN @lkraav) 2015-11-29 12:51:28 UTC
I'm completely converted over to i3, so awesome no longer relevant here :/