diff options
author | Brad Teaford Cowan <bcowan@gentoo.org> | 2002-10-05 08:25:36 +0000 |
---|---|---|
committer | Brad Teaford Cowan <bcowan@gentoo.org> | 2002-10-05 08:25:36 +0000 |
commit | 1b0de6691033fe55b5832ec63dbbd17f0c577dc5 (patch) | |
tree | cbcb63ed56a4d624669f20fab9f60b13ef2193eb /sys-apps/dmapi | |
parent | Modernized ebuilds and fixed symlinks (diff) | |
download | gentoo-2-1b0de6691033fe55b5832ec63dbbd17f0c577dc5.tar.gz gentoo-2-1b0de6691033fe55b5832ec63dbbd17f0c577dc5.tar.bz2 gentoo-2-1b0de6691033fe55b5832ec63dbbd17f0c577dc5.zip |
Modernized ebuilds and fixed symlinks
Diffstat (limited to 'sys-apps/dmapi')
-rw-r--r-- | sys-apps/dmapi/ChangeLog | 6 | ||||
-rw-r--r-- | sys-apps/dmapi/dmapi-2.0.5.ebuild | 29 |
2 files changed, 23 insertions, 12 deletions
diff --git a/sys-apps/dmapi/ChangeLog b/sys-apps/dmapi/ChangeLog index e82858a45fe2..ff4d58253231 100644 --- a/sys-apps/dmapi/ChangeLog +++ b/sys-apps/dmapi/ChangeLog @@ -1,6 +1,6 @@ # ChangeLog for sys-apps/dmapi # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/sys-apps/dmapi/ChangeLog,v 1.4 2002/09/27 20:01:06 bcowan Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/dmapi/ChangeLog,v 1.5 2002/10/05 08:25:36 bcowan Exp $ *dmapi-2.0.5 (27 Sep 2002) @@ -9,6 +9,10 @@ version bump thanks to Hanno Boeck <hanno@gentoo.org> + 05 Oct 2002; Brad Cowan <bcowan@gentoo.org> dmapi-2.0.5.ebuild : + + Fixed symlinks and "modernized" ebuild. + *dmapi-20020330.ebuild (14 July 2002) 21 Jul 2002; Mark Guertin <gerk@gentoo.org>: diff --git a/sys-apps/dmapi/dmapi-2.0.5.ebuild b/sys-apps/dmapi/dmapi-2.0.5.ebuild index 1683219badca..f4d1479cfb49 100644 --- a/sys-apps/dmapi/dmapi-2.0.5.ebuild +++ b/sys-apps/dmapi/dmapi-2.0.5.ebuild @@ -1,37 +1,44 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/dmapi/dmapi-2.0.5.ebuild,v 1.2 2002/10/04 06:24:06 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/dmapi/dmapi-2.0.5.ebuild,v 1.3 2002/10/05 08:25:36 bcowan Exp $ S=${WORKDIR}/${P} + DESCRIPTION="XFS data management API library" + SRC_URI="ftp://oss.sgi.com/projects/xfs/download/cmd_tars/${P}.src.tar.gz" HOMEPAGE="http://oss.sgi.com/projects/xfs" + KEYWORDS="x86 ppc sparc sparc64" SLOT="0" LICENSE="LGPL-2.1" -DEPEND="virtual/glibc sys-devel/autoconf sys-devel/make sys-apps/xfsprogs" -RDEPEND="virtual/glibc" +DEPEND="sys-apps/xfsprogs" +RDEPEND="${DEPEND}" src_compile() { - cd ${S} - export OPTIMIZER="${CFLAGS}" - export DEBUG=-DNDEBUG + OPTIMIZER="${CFLAGS}" + DEBUG=-DNDEBUG + autoconf || die - ./configure --prefix=/usr || die - # 1) add a ${DESTDIR} prefix to all install paths so we can relocate during the "install" phase - # 2) we also set the /usr/share/doc/ directory to the correct value. - # 3) we remove a hard-coded "-O1" - # 4) we fix some Makefile-created library symlinks that contains absolute paths + + ./configure --prefix=/usr \ + --libexecdir=/lib || die + cp include/builddefs include/builddefs.orig sed -e 's:^PKG_\(.*\)_DIR = \(.*\)$:PKG_\1_DIR = ${DESTDIR}\2:' \ -e "s:/usr/share/doc/${PN}:/usr/share/doc/${PF}:" \ -e 's:-O1::' \ -e 's:../$(INSTALL) -S \(.*\) $(PKG_.*_DIR)/\(.*$\)::' \ include/builddefs.orig > include/builddefs || die + emake || die } src_install() { make DESTDIR=${D} install install-dev || die + + dosym /lib/libdm.a /usr/lib/libdm.a + dosym /lib/libdm.la /usr/lib/libdm.la + dosym /usr/lib/libdm.so /lib/libdm.so } |