Changes between Version 26 and Version 27 of BuildingGtk
- Timestamp:
- Jul 22, 2008, 2:28:32 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BuildingGtk
v26 v27 28 28 === Gentoo === 29 29 30 Gentoo is working on an ebuild: http://bugs.gentoo.org/show_bug.cgi?id=190347.31 To use the WebKit overlay you need to emerge '''layman''' and add the overlay: 30 Gentoo have an ebuild for WebkitGTK in testing: http://bugs.gentoo.org/show_bug.cgi?id=190347. 31 You will have to add the testing keyword to your '/etc/portage/package.keywords' file in order to install the package. 32 32 {{{ 33 emerge -va layman 34 echo "source /usr/portage/local/layman/make.conf" >> /etc/make.conf 35 layman -f -a sunrise 33 # echo 'net-libs/webkit-gtk ~arch' >> /etc/portage/package.keywords 36 34 }}} 37 The GTK+ port of WebKit is named '''webkitgtk'''. I would invite you to look at the USE flags of the ebuild. 35 Please remember to change ~arch to the architecture you're using (~x86, ~amd64). 36 The GTK+ port of WebKit is named '''webkit-gtk'''. I would invite you to look at the USE flags of the ebuild and add it 37 to the packages.use file depending of your preferences. 38 38 You can now emerge it normally: 39 39 {{{ 40 emerge -va webkitgtk40 # emerge -va webkit-gtk 41 41 }}} 42 42 You can then regularly update to the latest reviewed revision, which usually belongs to a new nightly build: 43 43 {{{ 44 layman -s sunrise 45 emerge -u webkitgtk 44 # emerge -u webkit-gtk 46 45 }}} 47 46