diff options
Diffstat (limited to 'app-misc/beep/beep-1.3.ebuild')
-rw-r--r-- | app-misc/beep/beep-1.3.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/app-misc/beep/beep-1.3.ebuild b/app-misc/beep/beep-1.3.ebuild new file mode 100644 index 000000000000..f4ef53689687 --- /dev/null +++ b/app-misc/beep/beep-1.3.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=4 + +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="" + +PATCHES=( ${FILESDIR}/${PN}-1.2.2-Makefile.patch ) + +pkg_setup() { + tc-export CC +} + +src_install() { + dobin beep + fperms 0711 /usr/bin/beep + doman beep.1.gz + dodoc CHANGELOG CREDITS README +} |