# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # $Header: /home/cvsroot/gentoo-x86/dev-util/aegis/aegis-4.4.ebuild,v 1.3 2002/07/09 04:57:34 seemant Exp $ S=${WORKDIR}/${P} DESCRIPTION="A transaction based revision control system" SRC_URI="http://aegis.sourceforge.net/${P}.tar.gz" HOMEPAGE="http://aegis.sourceforge.net" DEPEND="sys-libs/zlib sys-devel/gettext sys-apps/groff sys-devel/bison tcltk? ( >=dev-lang/tk-8.3 )" SLOT="0" LICENSE="GPL-2" KEYWORDS="x86" src_compile() { # By default aegis configure puts shareable read/write files (locks etc) # in ${prefix}/com/aegis but the FHS says /var/lib/aegis can be shared. myconf="${myconf} --with-nlsdir=/usr/share/locale" econf \ --sharedstatedir=/var/lib/aegis \ ${myconf} || die "./configure failed" # Second ebuild causes redefined/undefined function errors make clean # not emake safe, I think make || die } src_install () { make RPM_BUILD_ROOT=${D} install || die # NOTE: Gentoo does not have a "profile.d" system, HOWEVER # we do want the user to be able to source these files. # (And as /etc/profile.d is a pretty standard location, it # is probably best to just use it). # Therefore the files installed in /etc/profile.d are kept. ##rm ${D}/etc/profile.d/aegis.sh ##rm ${D}/etc/profile.d/aegis.csh ##rmdir ${D}/etc/profile.d ##rmdir ${D}/etc # OK so ${D}/var/lib/aegis gets UID=3, but for some # reason so do the files under /usr/share, even though # they are read-only. chown -R root.root ${D}/usr/share # Remove duplicate documention etc. rm -r ${D}/usr/share/aegis/en rm -r ${D}/usr/share/aegis/de rm -r ${D}/usr/share/aegis/man1 # Leaving out the .dvi versions and junk. dodoc lib/en/*.txt dodoc lib/en/*.ps # Link to share dir so user has a chance of noticing it. dosym /usr/share/aegis /usr/share/doc/${PF}/scripts # Config file examples are documentation. mv ${D}/usr/share/aegis/config.example ${D}/usr/share/doc/${PF}/ dodoc LICENSE BUILDING MANIFEST README }