You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
841 B
34 lines
841 B
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/x11-misc/sselp/sselp-0.2.ebuild,v 1.9 2012/02/16 02:03:41 jer Exp $
|
|
|
|
inherit toolchain-funcs
|
|
|
|
DESCRIPTION="Simple X selection printer"
|
|
HOMEPAGE="http://tools.suckless.org/sselp"
|
|
SRC_URI="http://dl.suckless.org/tools/${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 hppa ~ppc ~ppc64 x86"
|
|
IUSE=""
|
|
|
|
DEPEND="x11-libs/libX11"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_unpack() {
|
|
unpack ${A}
|
|
cd "${S}"
|
|
|
|
sed -i \
|
|
-e "s|^CFLAGS = -std=c99 -pedantic -Wall -Os|CFLAGS += -std=c99 -pedantic -Wall|" \
|
|
-e "s|^LDFLAGS = -s|LDFLAGS +=|" \
|
|
-e "s|^CC = cc|CC = $(tc-getCC)|" \
|
|
config.mk || die "sed failed"
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" PREFIX="/usr" install || die "emake install failed"
|
|
dodoc README
|
|
}
|