Sync with portage [Sat Feb 21 21:50:57 MSK 2015].

mhiretskiy
root 9 years ago
parent a378e840fd
commit 5bd8226ca3

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/kedpm/kedpm-0.4.0-r2.ebuild,v 1.2 2015/02/19 09:04:28 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/app-admin/kedpm/kedpm-0.4.0-r2.ebuild,v 1.3 2015/02/21 12:27:22 ago Exp $
EAPI=5
@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc ~x86"
KEYWORDS="amd64 ppc ~x86"
IUSE="gtk"
DEPEND="dev-python/pycrypto[${PYTHON_USEDEP}]

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/dpkg/dpkg-1.17.23.ebuild,v 1.4 2015/02/19 09:02:46 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/app-arch/dpkg/dpkg-1.17.23.ebuild,v 1.5 2015/02/21 12:28:28 ago Exp $
EAPI=5
inherit eutils multilib autotools toolchain-funcs
@ -11,7 +11,7 @@ SRC_URI="mirror://debian/pool/main/d/${PN}/${P/-/_}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-solaris ~x86-solaris"
KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-solaris ~x86-solaris"
IUSE="+bzip2 +lzma nls selinux test unicode +update-alternatives +zlib"
RDEPEND="

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/pinentry/pinentry-0.9.0.ebuild,v 1.3 2015/02/19 09:07:33 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/app-crypt/pinentry/pinentry-0.9.0.ebuild,v 1.4 2015/02/21 12:30:11 ago Exp $
EAPI=5
@ -12,7 +12,7 @@ SRC_URI="mirror://gnupg/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="gtk ncurses qt4 caps static"
RDEPEND="

@ -0,0 +1,80 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/qca/qca-2.0.3-r1.ebuild,v 1.2 2015/02/21 11:49:42 jer Exp $
EAPI="3"
inherit eutils multilib qt4-r2
DESCRIPTION="Qt Cryptographic Architecture (QCA)"
HOMEPAGE="http://delta.affinix.com/qca/"
SRC_URI="http://delta.affinix.com/download/${PN}/${PV%.*}/${P}.tar.bz2"
LICENSE="LGPL-2"
SLOT="2"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris"
IUSE="aqua debug doc examples gpg logger openssl pkcs11 sasl"
RESTRICT="test"
DEPEND="dev-qt/qtcore:4[debug?]"
RDEPEND="${DEPEND}
!<app-crypt/qca-1.0-r3:0"
PDEPEND="gpg? ( app-crypt/qca-gnupg )
logger? ( app-crypt/qca-logger )
openssl? ( app-crypt/qca-ossl )
pkcs11? ( app-crypt/qca-pkcs11 )
sasl? ( app-crypt/qca-cyrus-sasl )"
src_prepare() {
epatch "${FILESDIR}"/${PN}-2.0.2-pcfilespath.patch \
"${FILESDIR}"/${P}+gcc-4.7.patch
if use aqua; then
sed -i -e "s|QMAKE_LFLAGS_SONAME =.*|QMAKE_LFLAGS_SONAME = -Wl,-install_name,|g" \
src/src.pro || die
fi
}
src_configure() {
# Ensure proper rpath
export EXTRA_QMAKE_RPATH="${EPREFIX}/usr/$(get_libdir)/qca2"
ABI= ./configure \
--prefix="${EPREFIX}"/usr \
--qtdir="${EPREFIX}"/usr \
--includedir="${EPREFIX}"/usr/include/qca2 \
--libdir="${EPREFIX}"/usr/$(get_libdir)/qca2 \
--certstore-path="${EPREFIX}"/etc/ssl/certs/ca-certificates.crt \
--no-separate-debug-info \
--disable-tests \
--$(use debug && echo debug || echo release) \
--no-framework \
|| die "configure failed"
eqmake4
}
src_install() {
emake INSTALL_ROOT="${D}" install || die
dodoc README TODO || die
cat <<-EOF > "${WORKDIR}"/44qca2
LDPATH="${EPREFIX}/usr/$(get_libdir)/qca2"
EOF
doenvd "${WORKDIR}"/44qca2 || die
if use doc; then
dohtml "${S}"/apidocs/html/* || die
fi
if use examples; then
insinto /usr/share/doc/${PF}/
doins -r "${S}"/examples || die
fi
# add the proper rpath for packages that do CONFIG += crypto
echo "QMAKE_RPATHDIR += \"${EPREFIX}/usr/$(get_libdir)/qca2\"" >> \
"${D%/}${EPREFIX}/usr/share/qt4/mkspecs/features/crypto.prf" \
|| die "failed to add rpath to crypto.prf"
}

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-01.ebuild,v 1.9 2010/10/19 08:42:33 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-01.ebuild,v 1.10 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,9 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}
src_install() {
dodir /usr/share/doc

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-09.ebuild,v 1.9 2010/10/19 08:42:34 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-09.ebuild,v 1.10 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,9 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}
src_install() {
dodir /usr/share/doc

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-10.ebuild,v 1.9 2010/10/19 08:42:32 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-10.ebuild,v 1.10 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,9 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}
src_install() {
dodir /usr/share/doc

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-100.ebuild,v 1.4 2010/10/19 08:42:34 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-100.ebuild,v 1.5 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-101.ebuild,v 1.4 2010/10/19 08:42:33 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-101.ebuild,v 1.5 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-102.ebuild,v 1.4 2010/10/19 08:42:33 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-102.ebuild,v 1.5 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-103.ebuild,v 1.4 2010/10/19 08:42:34 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-103.ebuild,v 1.5 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-104.ebuild,v 1.4 2010/10/19 08:42:33 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-104.ebuild,v 1.5 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-105.ebuild,v 1.4 2010/10/19 08:42:33 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-105.ebuild,v 1.5 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-106.ebuild,v 1.3 2010/10/19 08:42:32 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-106.ebuild,v 1.4 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-107.ebuild,v 1.3 2010/10/19 08:42:34 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-107.ebuild,v 1.4 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-108.ebuild,v 1.3 2010/10/19 08:42:33 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-108.ebuild,v 1.4 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-109.ebuild,v 1.3 2010/10/19 08:42:32 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-109.ebuild,v 1.4 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-11.ebuild,v 1.9 2010/10/19 08:42:34 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-11.ebuild,v 1.10 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,9 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}
src_install() {
dodir /usr/share/doc

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-110.ebuild,v 1.3 2010/10/19 08:42:33 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-110.ebuild,v 1.4 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-111.ebuild,v 1.3 2010/10/19 08:42:33 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-111.ebuild,v 1.4 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-112.ebuild,v 1.3 2010/10/19 08:42:32 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-112.ebuild,v 1.4 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-113.ebuild,v 1.3 2010/10/19 08:42:34 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-113.ebuild,v 1.4 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-114.ebuild,v 1.2 2010/10/19 08:42:32 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-114.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-115.ebuild,v 1.2 2010/10/19 08:42:33 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-115.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-116.ebuild,v 1.2 2010/10/19 08:42:33 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-116.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-117.ebuild,v 1.2 2010/10/19 08:42:33 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-117.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-118.ebuild,v 1.2 2010/10/19 08:42:32 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-118.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-119.ebuild,v 1.2 2010/10/19 08:42:32 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-119.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-12.ebuild,v 1.9 2010/10/19 08:42:32 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-12.ebuild,v 1.10 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,9 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}
src_install() {
dodir /usr/share/doc

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-120.ebuild,v 1.2 2010/10/19 08:42:32 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-120.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-121.ebuild,v 1.2 2010/10/19 08:42:34 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-121.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-122.ebuild,v 1.2 2010/10/19 08:42:34 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-122.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-123.ebuild,v 1.2 2010/10/19 08:42:34 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-123.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-124.ebuild,v 1.2 2010/10/19 08:42:32 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-124.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-125.ebuild,v 1.2 2010/10/19 08:42:33 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-125.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-126.ebuild,v 1.2 2010/10/19 08:42:33 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-126.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-127.ebuild,v 1.2 2010/10/19 08:42:33 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-127.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-128.ebuild,v 1.2 2010/10/19 08:42:34 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-128.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-129.ebuild,v 1.2 2010/10/19 08:42:33 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-129.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-13.ebuild,v 1.9 2010/10/19 08:42:34 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-13.ebuild,v 1.10 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,9 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}
src_install() {
dodir /usr/share/doc

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-130.ebuild,v 1.2 2010/10/19 08:42:32 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-130.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-131.ebuild,v 1.2 2010/10/19 08:42:33 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-131.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-132.ebuild,v 1.2 2010/10/19 08:42:33 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-132.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-133.ebuild,v 1.2 2010/10/19 08:42:33 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-133.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-134.ebuild,v 1.2 2010/10/19 08:42:32 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-134.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-135.ebuild,v 1.2 2010/10/19 08:42:32 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-135.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-136.ebuild,v 1.2 2010/10/19 08:42:34 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-136.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-137.ebuild,v 1.2 2010/10/19 08:42:33 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-137.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-138.ebuild,v 1.2 2010/10/19 08:42:33 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-138.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-139.ebuild,v 1.2 2010/10/19 08:42:33 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-139.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-14.ebuild,v 1.9 2010/10/19 08:42:33 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-14.ebuild,v 1.10 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,9 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}
src_install() {
dodir /usr/share/doc

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-140.ebuild,v 1.2 2010/10/19 08:42:34 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-140.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-141.ebuild,v 1.2 2010/10/19 08:42:33 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-141.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-142.ebuild,v 1.2 2010/10/19 08:42:33 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-142.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-143.ebuild,v 1.2 2010/10/19 08:42:32 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-143.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-144.ebuild,v 1.2 2010/10/19 08:42:32 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-144.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-145.ebuild,v 1.2 2010/10/19 08:42:33 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-145.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-146.ebuild,v 1.2 2010/10/19 08:42:32 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-146.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-147.ebuild,v 1.2 2010/10/19 08:42:33 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-147.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-148.ebuild,v 1.2 2010/10/19 08:42:33 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-148.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-149.ebuild,v 1.2 2010/10/19 08:42:33 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-149.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-15.ebuild,v 1.9 2010/10/19 08:42:32 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-15.ebuild,v 1.10 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,9 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}
src_install() {
dodir /usr/share/doc

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-150.ebuild,v 1.2 2010/10/19 08:42:33 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-150.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-151.ebuild,v 1.2 2010/10/19 08:42:34 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-151.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-152.ebuild,v 1.2 2010/10/19 08:42:34 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-152.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-153.ebuild,v 1.2 2010/10/19 08:42:34 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-153.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-154.ebuild,v 1.2 2010/10/19 08:42:33 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-154.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-155.ebuild,v 1.2 2010/10/19 08:42:33 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-155.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-156.ebuild,v 1.2 2010/10/19 08:42:33 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-156.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-157.ebuild,v 1.2 2010/10/19 08:42:34 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-157.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-158.ebuild,v 1.2 2010/10/19 08:42:32 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-158.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-159.ebuild,v 1.2 2010/10/19 08:42:32 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-159.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-16.ebuild,v 1.9 2010/10/19 08:42:32 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-16.ebuild,v 1.10 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,9 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}
src_install() {
dodir /usr/share/doc

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-160.ebuild,v 1.2 2010/10/19 08:42:32 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-160.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-161.ebuild,v 1.2 2010/10/19 08:42:32 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-161.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-162.ebuild,v 1.2 2010/10/19 08:42:34 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-162.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-163.ebuild,v 1.2 2010/10/19 08:42:32 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-163.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-164.ebuild,v 1.2 2010/10/19 08:42:32 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-164.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-165.ebuild,v 1.2 2010/10/19 08:42:32 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-165.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-166.ebuild,v 1.2 2010/10/19 08:42:33 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-166.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-167.ebuild,v 1.2 2010/10/19 08:42:32 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-167.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-168.ebuild,v 1.2 2010/10/19 08:42:33 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-168.ebuild,v 1.3 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-169.ebuild,v 1.1 2011/03/09 07:15:54 vapier Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-169.ebuild,v 1.2 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-17.ebuild,v 1.9 2010/10/19 08:42:32 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-17.ebuild,v 1.10 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,9 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}
src_install() {
dodir /usr/share/doc

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-170.ebuild,v 1.1 2011/03/09 07:15:54 vapier Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-170.ebuild,v 1.2 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-171.ebuild,v 1.1 2011/03/09 07:15:54 vapier Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-171.ebuild,v 1.2 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-172.ebuild,v 1.1 2011/03/09 07:15:54 vapier Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-172.ebuild,v 1.2 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-173.ebuild,v 1.1 2011/03/09 07:15:54 vapier Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-173.ebuild,v 1.2 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-174.ebuild,v 1.1 2011/03/09 07:15:54 vapier Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-174.ebuild,v 1.2 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-175.ebuild,v 1.1 2011/03/09 07:15:54 vapier Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-175.ebuild,v 1.2 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-176.ebuild,v 1.1 2011/03/09 07:15:54 vapier Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-176.ebuild,v 1.2 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-177.ebuild,v 1.1 2011/03/09 07:15:54 vapier Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-177.ebuild,v 1.2 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-178.ebuild,v 1.1 2011/03/09 07:15:54 vapier Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-178.ebuild,v 1.2 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-179.ebuild,v 1.1 2011/03/09 07:15:54 vapier Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-179.ebuild,v 1.2 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-18.ebuild,v 1.9 2010/10/19 08:42:32 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-18.ebuild,v 1.10 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,9 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}
src_install() {
dodir /usr/share/doc

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-180.ebuild,v 1.1 2011/03/09 07:15:54 vapier Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-180.ebuild,v 1.2 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}/lg

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-181.ebuild,v 1.3 2011/03/13 21:18:07 vapier Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-181.ebuild,v 1.4 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-182.ebuild,v 1.3 2011/03/13 21:18:07 vapier Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-182.ebuild,v 1.4 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,7 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-19.ebuild,v 1.9 2010/10/19 08:42:32 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-19.ebuild,v 1.10 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,9 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}
src_install() {
dodir /usr/share/doc

@ -1,6 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-20.ebuild,v 1.9 2010/10/19 08:42:34 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-gazette/linux-gazette-20.ebuild,v 1.10 2015/02/21 04:50:55 mrueg Exp $
EAPI=5
DESCRIPTION="Sharing ideas and discoveries and Making Linux just a little more fun"
HOMEPAGE="http://linuxgazette.net/"
@ -11,7 +13,9 @@ SLOT="${PV}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=app-doc/linux-gazette-base-${PV}"
RDEPEND=">=app-doc/linux-gazette-base-${PV}"
S=${WORKDIR}
src_install() {
dodir /usr/share/doc

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save