diff options
author | Agostino Sarubbo <ago@gentoo.org> | 2014-04-13 11:59:05 +0000 |
---|---|---|
committer | Agostino Sarubbo <ago@gentoo.org> | 2014-04-13 11:59:05 +0000 |
commit | db02a1bcba95b9d19ee7da3121e99a37d595b2a1 (patch) | |
tree | 6061a449e6d8be6c8a312ea11c18d9b2d9fc7064 /www-client/uzbl | |
parent | Remove old (diff) | |
download | gentoo-2-db02a1bcba95b9d19ee7da3121e99a37d595b2a1.tar.gz gentoo-2-db02a1bcba95b9d19ee7da3121e99a37d595b2a1.tar.bz2 gentoo-2-db02a1bcba95b9d19ee7da3121e99a37d595b2a1.zip |
Remove old
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 7194459F)
Diffstat (limited to 'www-client/uzbl')
-rw-r--r-- | www-client/uzbl/ChangeLog | 8 | ||||
-rw-r--r-- | www-client/uzbl/uzbl-2010.08.05.ebuild | 148 | ||||
-rw-r--r-- | www-client/uzbl/uzbl-2011.04.12.ebuild | 124 | ||||
-rw-r--r-- | www-client/uzbl/uzbl-2011.11.28.ebuild | 132 |
4 files changed, 6 insertions, 406 deletions
diff --git a/www-client/uzbl/ChangeLog b/www-client/uzbl/ChangeLog index 4345b4ce42d4..ae63bec6de85 100644 --- a/www-client/uzbl/ChangeLog +++ b/www-client/uzbl/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for www-client/uzbl -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/uzbl/ChangeLog,v 1.53 2013/12/23 14:48:27 ago Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/www-client/uzbl/ChangeLog,v 1.54 2014/04/13 11:59:05 ago Exp $ + + 13 Apr 2014; Agostino Sarubbo <ago@gentoo.org> -uzbl-2010.08.05.ebuild, + -uzbl-2011.04.12.ebuild, -uzbl-2011.11.28.ebuild: + Remove old 23 Dec 2013; Agostino Sarubbo <ago@gentoo.org> uzbl-2012.05.14.ebuild: Stable for x86, wrt bug #404985 diff --git a/www-client/uzbl/uzbl-2010.08.05.ebuild b/www-client/uzbl/uzbl-2010.08.05.ebuild deleted file mode 100644 index 4de607e39fb9..000000000000 --- a/www-client/uzbl/uzbl-2010.08.05.ebuild +++ /dev/null @@ -1,148 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/uzbl/uzbl-2010.08.05.ebuild,v 1.7 2012/05/03 06:01:03 jdhore Exp $ - -EAPI="2" - -inherit base - -IUSE="" -if [[ ${PV} == *9999* ]]; then - inherit git - EGIT_REPO_URI=${EGIT_REPO_URI:-"git://github.com/Dieterbe/uzbl.git"} - KEYWORDS="" - SRC_URI="" - IUSE="experimental" - use experimental && - EGIT_BRANCH="experimental" && - EGIT_COMMIT="experimental" -else - KEYWORDS="amd64 x86" - SRC_URI="http://github.com/Dieterbe/${PN}/tarball/${PV} -> ${P}.tar.gz" -fi - -DESCRIPTION="Web interface tools which adhere to the unix philosophy." -HOMEPAGE="http://www.uzbl.org" - -LICENSE="LGPL-2.1 MPL-1.1" -SLOT="0" -IUSE+=" +browser helpers +tabbed vim-syntax" - -COMMON_DEPEND=" - >=dev-libs/icu-4.0.1 - >=net-libs/libsoup-2.24:2.4 - >=net-libs/webkit-gtk-1.1.15:2 - >=x11-libs/gtk+-2.14:2 -" - -DEPEND=" - virtual/pkgconfig - ${COMMON_DEPEND} -" - -RDEPEND=" - ${COMMON_DEPEND} - x11-misc/xdg-utils - browser? ( - x11-misc/xclip - ) - helpers? ( - dev-python/pygtk - dev-python/pygobject:2 - gnome-extra/zenity - net-misc/socat - x11-libs/pango - x11-misc/dmenu - x11-misc/xclip - ) - tabbed? ( - dev-python/pygtk - ) - vim-syntax? ( || ( app-editors/vim app-editors/gvim ) ) -" -# TODO document what requires the above helpers - -pkg_setup() { - if ! use helpers; then - elog "uzbl's extra scripts use various optional applications:" - elog - elog " dev-python/pygtk" - elog " dev-python/pygobject:2" - elog " gnome-extra/zenity" - elog " net-misc/socat" - elog " x11-libs/pango" - elog " x11-misc/dmenu" - elog " x11-misc/xclip" - elog - elog "Make sure you emerge the ones you need manually." - elog "You may also activate the *helpers* USE flag to" - elog "install all of them automatically." - else - einfo "You have enabled the *helpers* USE flag that installs" - einfo "various optional applications used by uzbl's extra scripts." - fi - - if use tabbed && ! use browser; then - ewarn - ewarn "You enabled the *tabbed* USE flag but not *browser*." - ewarn "*tabbed* depends on *browser*, so it will be disabled." - ewarn - ebeep 3 - fi - - ewarn - ewarn "A security issue was discovered in the mousebutton2 binding that was" - ewarn "used in previous versions of the sample config file." - ewarn - ewarn "If you are using a sample config provided by previous uzbl versions," - ewarn "you need to change the mousebutton2 binding manually to fix it." - ewarn - ewarn "You can find the fix here:" - ewarn " http://github.com/pawelz/uzbl/commit/342f292c27973c9df5f631a38bd12f14a9c5cdc2" - ewarn - ewarn "More information about the security issue here:" - ewarn " http://bugs.gentoo.org/show_bug.cgi?id=331421" - ewarn "and here:" - ewarn " http://www.uzbl.org/news.php?id=29" - ewarn -} - -src_prepare() { - if [[ ${PV} == *9999* ]]; then - git_src_prepare - else - cd "${WORKDIR}"/Dieterbe-uzbl-* - S=$(pwd) - fi - - # remove -ggdb - sed -i "s/-ggdb //g" Makefile || - die "-ggdb removal sed failed" - - # adjust path in default config file to /usr/share - sed -i "s:/usr/local/share/uzbl:/usr/share/uzbl:g" \ - examples/config/config || - die "config path sed failed" -} - -src_compile() { - emake || die "compile failed" -} - -src_install() { - local targets="install-uzbl-core" - use browser && targets="${targets} install-uzbl-browser" - use browser && use tabbed && targets="${targets} install-uzbl-tabbed" - - emake DESTDIR="${D}" PREFIX="/usr" DOCDIR="${D}/usr/share/doc/${PF}" ${targets} || - die "Installation failed" - - if use vim-syntax; then - insinto /usr/share/vim/vimfiles/ftdetect - doins "${S}"/extras/vim/ftdetect/uzbl.vim || die "vim-syntax doins failed" - - insinto /usr/share/vim/vimfiles/syntax - doins "${S}"/extras/vim/syntax/uzbl.vim || die "vim-syntax doins failed" - fi - -} diff --git a/www-client/uzbl/uzbl-2011.04.12.ebuild b/www-client/uzbl/uzbl-2011.04.12.ebuild deleted file mode 100644 index 59bec4e0389e..000000000000 --- a/www-client/uzbl/uzbl-2011.04.12.ebuild +++ /dev/null @@ -1,124 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/uzbl/uzbl-2011.04.12.ebuild,v 1.5 2012/05/03 06:01:03 jdhore Exp $ - -EAPI="4" - -inherit base - -IUSE="" -if [[ ${PV} == *9999* ]]; then - inherit git - EGIT_REPO_URI=${EGIT_REPO_URI:-"git://github.com/Dieterbe/uzbl.git"} - KEYWORDS="" - SRC_URI="" - IUSE="experimental" - use experimental && - EGIT_BRANCH="experimental" && - EGIT_COMMIT="experimental" -else - KEYWORDS="amd64 x86" - SRC_URI="http://github.com/Dieterbe/${PN}/tarball/${PV} -> ${P}.tar.gz" -fi - -DESCRIPTION="Web interface tools which adhere to the unix philosophy." -HOMEPAGE="http://www.uzbl.org" - -LICENSE="LGPL-2.1 MPL-1.1" -SLOT="0" -IUSE+=" +browser helpers +tabbed vim-syntax" - -REQUIRED_USE="tabbed? ( browser )" - -COMMON_DEPEND=" - dev-libs/glib:2 - >=dev-libs/icu-4.0.1 - >=net-libs/libsoup-2.24:2.4 - >=net-libs/webkit-gtk-1.1.15:2 - >=x11-libs/gtk+-2.14:2 -" - -DEPEND=" - virtual/pkgconfig - ${COMMON_DEPEND} -" - -RDEPEND=" - ${COMMON_DEPEND} - x11-misc/xdg-utils - browser? ( - x11-misc/xclip - ) - helpers? ( - dev-python/pygtk - dev-python/pygobject:2 - gnome-extra/zenity - net-misc/socat - x11-libs/pango - x11-misc/dmenu - x11-misc/xclip - ) - tabbed? ( - dev-python/pygtk - ) - vim-syntax? ( || ( app-editors/vim app-editors/gvim ) ) -" -# TODO document what requires the above helpers - -pkg_setup() { - if ! use helpers; then - elog "uzbl's extra scripts use various optional applications:" - elog - elog " dev-python/pygtk" - elog " dev-python/pygobject:2" - elog " gnome-extra/zenity" - elog " net-misc/socat" - elog " x11-libs/pango" - elog " x11-misc/dmenu" - elog " x11-misc/xclip" - elog - elog "Make sure you emerge the ones you need manually." - elog "You may also activate the *helpers* USE flag to" - elog "install all of them automatically." - else - einfo "You have enabled the *helpers* USE flag that installs" - einfo "various optional applications used by uzbl's extra scripts." - fi -} - -src_unpack() { - if [[ ${PV} == *9999* ]]; then - git_src_unpack - else - unpack ${A} - mv Dieterbe-uzbl-* "${S}" - fi -} - -src_prepare() { - if [[ ${PV} == *9999* ]]; then - git_src_prepare - fi - - # remove -ggdb - sed -i "s/-ggdb //g" Makefile || - die "-ggdb removal sed failed" -} - -src_install() { - local targets="install-uzbl-core" - use browser && targets="${targets} install-uzbl-browser" - use browser && use tabbed && targets="${targets} install-uzbl-tabbed" - - emake DESTDIR="${D}" PREFIX="/usr" DOCDIR="${D}/usr/share/doc/${PF}" ${targets} || - die "Installation failed" - - if use vim-syntax; then - insinto /usr/share/vim/vimfiles/ftdetect - doins "${S}"/extras/vim/ftdetect/uzbl.vim || die "vim-syntax doins failed" - - insinto /usr/share/vim/vimfiles/syntax - doins "${S}"/extras/vim/syntax/uzbl.vim || die "vim-syntax doins failed" - fi - -} diff --git a/www-client/uzbl/uzbl-2011.11.28.ebuild b/www-client/uzbl/uzbl-2011.11.28.ebuild deleted file mode 100644 index ee79c0d91c5e..000000000000 --- a/www-client/uzbl/uzbl-2011.11.28.ebuild +++ /dev/null @@ -1,132 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/uzbl/uzbl-2011.11.28.ebuild,v 1.2 2012/05/03 06:01:03 jdhore Exp $ - -EAPI="4" - -IUSE="gtk3" -if [[ ${PV} == *9999* ]]; then - inherit git-2 - EGIT_REPO_URI=${EGIT_REPO_URI:-"git://github.com/Dieterbe/uzbl.git"} - KEYWORDS="" - SRC_URI="" - IUSE+=" experimental" - use experimental && - EGIT_BRANCH="experimental" && - EGIT_COMMIT="experimental" -else - KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" - SRC_URI="http://github.com/Dieterbe/${PN}/tarball/${PV} -> ${P}.tar.gz" -fi - -DESCRIPTION="Web interface tools which adhere to the unix philosophy." -HOMEPAGE="http://www.uzbl.org" - -LICENSE="LGPL-2.1 MPL-1.1" -SLOT="0" -IUSE+=" +browser helpers +tabbed vim-syntax" - -REQUIRED_USE="tabbed? ( browser )" - -COMMON_DEPEND=" - dev-libs/glib:2 - >=dev-libs/icu-4.0.1 - >=net-libs/libsoup-2.24:2.4 - !gtk3? ( - >=net-libs/webkit-gtk-1.1.15:2 - >=x11-libs/gtk+-2.14:2 - ) - gtk3? ( - net-libs/webkit-gtk:3 - x11-libs/gtk+:3 - ) - -" - -DEPEND=" - virtual/pkgconfig - ${COMMON_DEPEND} -" - -RDEPEND=" - ${COMMON_DEPEND} - x11-misc/xdg-utils - browser? ( - x11-misc/xclip - ) - helpers? ( - dev-python/pygtk - dev-python/pygobject:2 - gnome-extra/zenity - net-misc/socat - x11-libs/pango - x11-misc/dmenu - x11-misc/xclip - ) - tabbed? ( - dev-python/pygtk - ) - vim-syntax? ( || ( app-editors/vim app-editors/gvim ) ) -" -# TODO document what requires the above helpers - -pkg_setup() { - if ! use helpers; then - elog "uzbl's extra scripts use various optional applications:" - elog - elog " dev-python/pygtk" - elog " dev-python/pygobject:2" - elog " gnome-extra/zenity" - elog " net-misc/socat" - elog " x11-libs/pango" - elog " x11-misc/dmenu" - elog " x11-misc/xclip" - elog - elog "Make sure you emerge the ones you need manually." - elog "You may also activate the *helpers* USE flag to" - elog "install all of them automatically." - else - einfo "You have enabled the *helpers* USE flag that installs" - einfo "various optional applications used by uzbl's extra scripts." - fi -} - -src_unpack() { - if [[ ${PV} == *9999* ]]; then - git-2_src_unpack - else - unpack ${A} - mv Dieterbe-uzbl-* "${S}" - fi -} - -src_prepare() { - # remove -ggdb - sed -i "s/-ggdb //g" Makefile || - die "-ggdb removal sed failed" - - # make gtk3 configurable - sed -r "s:^(USE_GTK3) = (.*):\1?=\2:" -i Makefile || - die "Makefile sed for gtk3 failed" -} - -src_compile() { - emake USE_GTK3=$(use gtk3 && echo 1 || echo 0) -} - -src_install() { - local targets="install-uzbl-core" - use browser && targets="${targets} install-uzbl-browser" - use browser && use tabbed && targets="${targets} install-uzbl-tabbed" - - emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" DOCDIR="${ED}/usr/share/doc/${PF}" ${targets} - - if use vim-syntax; then - insinto /usr/share/vim/vimfiles/ftdetect - doins "${S}"/extras/vim/ftdetect/uzbl.vim - - insinto /usr/share/vim/vimfiles/syntax - doins "${S}"/extras/vim/syntax/uzbl.vim - fi - -} |