diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-04-07 18:50:00 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-04-07 18:50:00 +0000 |
commit | 7266d433bc6a2109e2c2363051d0334b8882ef84 (patch) | |
tree | 262e81a7742f96f37ed9ff2c94a283e03bbb2e8a /app-office/facturalux | |
parent | add inherit eutils (diff) | |
download | historical-7266d433bc6a2109e2c2363051d0334b8882ef84.tar.gz historical-7266d433bc6a2109e2c2363051d0334b8882ef84.tar.bz2 historical-7266d433bc6a2109e2c2363051d0334b8882ef84.zip |
add inherit eutils
Diffstat (limited to 'app-office/facturalux')
-rw-r--r-- | app-office/facturalux/facturalux-0.4.ebuild | 19 |
1 files changed, 6 insertions, 13 deletions
diff --git a/app-office/facturalux/facturalux-0.4.ebuild b/app-office/facturalux/facturalux-0.4.ebuild index 3444d8030679..ab86c8a276e3 100644 --- a/app-office/facturalux/facturalux-0.4.ebuild +++ b/app-office/facturalux/facturalux-0.4.ebuild @@ -1,14 +1,16 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/facturalux/facturalux-0.4.ebuild,v 1.2 2004/03/14 01:45:29 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/facturalux/facturalux-0.4.ebuild,v 1.3 2004/04/07 18:44:37 vapier Exp $ + +inherit eutils DESCRIPTION="General purpose ERP/CRM software" -HOMEPAGE="http://www.facturalux.org" +HOMEPAGE="http://www.facturalux.org/" SRC_URI="mirror://sourceforge/facturalux/${P}.tar.bz2 mirror://sourceforge/facturalux/personalizacion-base-0.0.tar.bz2" -SLOT="0" LICENSE="GPL-2" +SLOT="0" KEYWORDS="~x86" DEPEND=">=x11-libs/qt-3 @@ -16,38 +18,30 @@ DEPEND=">=x11-libs/qt-3 RDEPEND="dev-db/postgresql" src_unpack() { - unpack ${A} - cd ${WORKDIR} epatch ${FILESDIR}/${P}-gentoo.patch epatch ${FILESDIR}/${PN}-base-0.0-gentoo.patch - } src_compile() { - cd ${S} econf || die "configure failed" emake || die "parallel make failed" cd ${WORKDIR}/base-0.0 econf || die "base-0.0 configure failed" emake || die "base-0.0 parallel make failed" - } src_install() { - make DESTDIR=${D} install || die "install failed" cd ${WORKDIR}/base-0.0 make DESTDIR=${D} install || die "base-0.0 install failed" cd ${S} - dodoc AUTHORS ChangeLog COPYING INSTALL LEEME NOTES README TODO - + dodoc AUTHORS ChangeLog INSTALL LEEME NOTES README TODO } pkg_postinst() { - einfo einfo "You must create a new database and a proper user:" einfo @@ -55,5 +49,4 @@ pkg_postinst() { einfo "$ createdb -E UNICODE facturalux" einfo "$ createuser --pwprompt password" einfo - } |