diff options
author | Maik Schreiber <blizzy@gentoo.org> | 2002-08-03 16:59:52 +0000 |
---|---|---|
committer | Maik Schreiber <blizzy@gentoo.org> | 2002-08-03 16:59:52 +0000 |
commit | 1dcc031172c5d942cae615ef6414c3d0829ab69c (patch) | |
tree | 203a4539ccb18b87b99cedcf2e63282fd9241971 /app-cdr/gtkcdlabel/gtkcdlabel-0.6.8.ebuild | |
parent | Added ppc to KEYWORDS. (diff) | |
download | gentoo-2-1dcc031172c5d942cae615ef6414c3d0829ab69c.tar.gz gentoo-2-1dcc031172c5d942cae615ef6414c3d0829ab69c.tar.bz2 gentoo-2-1dcc031172c5d942cae615ef6414c3d0829ab69c.zip |
initial import of app-cdr/gtkcdlabel
Diffstat (limited to 'app-cdr/gtkcdlabel/gtkcdlabel-0.6.8.ebuild')
-rw-r--r-- | app-cdr/gtkcdlabel/gtkcdlabel-0.6.8.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/app-cdr/gtkcdlabel/gtkcdlabel-0.6.8.ebuild b/app-cdr/gtkcdlabel/gtkcdlabel-0.6.8.ebuild new file mode 100644 index 000000000000..78dc35d3584b --- /dev/null +++ b/app-cdr/gtkcdlabel/gtkcdlabel-0.6.8.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/app-cdr/gtkcdlabel/gtkcdlabel-0.6.8.ebuild,v 1.1 2002/08/03 16:59:52 blizzy Exp $ + +DESCRIPTION="A GTK+ frontend to cdlabelgen for easy and fast cd cover creation." +HOMEPAGE="http://gtkcdlabel.sourceforge.net" +SRC_URI="http://unc.dl.sourceforge.net/sourceforge/gtkcdlabel/${P}.tar.bz2" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" + +RDEPEND=">=app-cdr/cdlabelgen-2.3.0 + >=media-libs/libcdaudio-0.99.6 + >=x11-libs/gtk+-1.2.0" +DEPEND="${RDEPEND} + >=sys-devel/automake-1.6.1-r6" + +S="${WORKDIR}/${P}" + +src_compile() { + # gtkcdlabel does not come with a configure, we must call + # autogen.sh with the configure switches. + ./autogen.sh \ + --host=${CHOST} \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man || die "configure problem" + # We must do this by hand. + cp po/Makevars.template po/Makevars + aclocal -I m4 || die "configure problem" + # Second run _is_ needed. + ./autogen.sh \ + --host=${CHOST} \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man || die "configure problem" + emake || die "compile problem" +} + +src_install () { + make DESTDIR=${D} install || die "install problem" +} |