diff options
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/beep/beep-1.3-r1.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/app-misc/beep/beep-1.3-r1.ebuild b/app-misc/beep/beep-1.3-r1.ebuild new file mode 100644 index 000000000000..27c9a54ca117 --- /dev/null +++ b/app-misc/beep/beep-1.3-r1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit eutils base toolchain-funcs + +DESCRIPTION="The advanced PC speaker beeper" +HOMEPAGE="http://www.johnath.com/beep/" +SRC_URI="http://www.johnath.com/beep/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86" +IUSE="suid" + +PATCHES=( + "${FILESDIR}"/"${PN}"-1.2.2-Makefile.patch +) + +pkg_setup() { + tc-export CC +} + +src_install() { + dobin beep + if use suid; then + fowners :audio /usr/bin/beep + fperms 4710 /usr/bin/beep + else + fperms 0711 /usr/bin/beep + fi + doman beep.1.gz + dodoc CHANGELOG CREDITS README +} |