Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 168201 | Differences between
and this patch

Collapse All | Expand All

(-)file_not_specified_in_diff (-4 / +9 lines)
Line  Link Here
0
-- app-misc/beep/beep-1.3.ebuild
0
++ app-misc/beep/beep-1.3-r1.ebuild
Lines 1-4 Link Here
1
# Copyright 1999-2011 Gentoo Foundation
1
# Copyright 1999-2015 Gentoo Foundation
2
# Distributed under the terms of the GNU General Public License v2
2
# Distributed under the terms of the GNU General Public License v2
3
# $Id$
3
# $Id$
4
4
Lines 13-19 Link Here
13
LICENSE="GPL-2"
13
LICENSE="GPL-2"
14
SLOT="0"
14
SLOT="0"
15
KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86"
15
KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86"
16
IUSE=""
16
IUSE="suid"
17
17
18
PATCHES=( ${FILESDIR}/${PN}-1.2.2-Makefile.patch )
18
PATCHES=( ${FILESDIR}/${PN}-1.2.2-Makefile.patch )
19
19
Lines 23-29 Link Here
23
23
24
src_install() {
24
src_install() {
25
	dobin beep
25
	dobin beep
26
	fperms 0711 /usr/bin/beep
26
	if use suid; then
27
		fowners :audio /usr/bin/beep
28
		fperms 4710 /usr/bin/beep
29
	else
30
		fperms 0711 /usr/bin/beep
31
	fi
27
	doman beep.1.gz
32
	doman beep.1.gz
28
	dodoc CHANGELOG CREDITS README
33
	dodoc CHANGELOG CREDITS README
29
}
34
}

Return to bug 168201