summaryrefslogtreecommitdiff
blob: 1a254a9cf6e575d43cb4af619c2b5a4deb1d2219 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/xvattr/xvattr-1.3-r1.ebuild,v 1.7 2005/01/21 20:57:28 kugelfang Exp $

DESCRIPTION="X11 XVideo Querying/Setting Tool from Ogle project"
HOMEPAGE="http://www.dtek.chalmers.se/groups/dvd/"
SRC_URI="http://www.dtek.chalmers.se/groups/dvd/dist/${P}.tar.gz"

LICENSE="GPL-2"
SLOT=0
KEYWORDS="x86 ~amd64"
IUSE="gtk"

DEPEND="virtual/x11
	gtk? ( =x11-libs/gtk+-1.2*
	=dev-libs/glib-1.2* )"

src_unpack() {
	unpack ${A}
	# If no gtk then modify the necessary parts so that gtk isn't needed anymore
	if ! use gtk
	then
	    cd ${S}
	    rm Makefile.in
	    cp Makefile.am Makefile.am.orig
	    sed -e "s/bin_PROGRAMS = xvattr gxvattr/bin_PROGRAMS = xvattr/" -e "s/gxvattr_SOURCES = gxvattr.c//" -e "s/CFLAGS = @GTK_CFLAGS@//" -e "s/gxvattr_LDADD = @GTK_LIBS@ \$(X_LIBS) \$(X_PRE_LIBS) \$(X_EXTRA_LIBS) -lX11 -lXext//" Makefile.am.orig >Makefile.am
	    rm Makefile.am.orig

	    cp configure.in configure.in.orig
	    sed -e "s/dnl check for gtk//" -e "s/AM_PATH_GTK//" configure.in.orig >configure.in
	    rm configure.in.orig
	    automake
	    autoconf
	fi
}

src_install() {
	make DESTDIR="${D}" install || die "make install failed"
	dodoc AUTHORS ChangeLog NEWS README
}