summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrice Clement <monsieurp@gentoo.org>2017-08-04 00:41:41 +0200
committerPatrice Clement <monsieurp@gentoo.org>2017-08-04 00:41:41 +0200
commit37b605e0496dd043060ba2b1ed50bd3aa2337b01 (patch)
tree9cc38396cb90a4a17201264629827a4f44c1e98e /app-misc
parentapp-misc/beep: stable for all arches. (diff)
downloadgentoo-37b605e0496dd043060ba2b1ed50bd3aa2337b01.tar.gz
gentoo-37b605e0496dd043060ba2b1ed50bd3aa2337b01.tar.bz2
gentoo-37b605e0496dd043060ba2b1ed50bd3aa2337b01.zip
app-misc/beep: clean up old.
Package-Manager: Portage-2.3.6, Repoman-2.3.1
Diffstat (limited to 'app-misc')
-rw-r--r--app-misc/beep/beep-1.3-r1.ebuild39
1 files changed, 0 insertions, 39 deletions
diff --git a/app-misc/beep/beep-1.3-r1.ebuild b/app-misc/beep/beep-1.3-r1.ebuild
deleted file mode 100644
index 662cd4113ac3..000000000000
--- a/app-misc/beep/beep-1.3-r1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils 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}"/"${P}"-Makefile.patch
-)
-
-pkg_setup() {
- tc-export CC
-}
-
-src_prepare() {
- epatch "${PATCHES[@]}"
-}
-
-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
-}