diff options
author | Chris Larson <clarson@kergoth.com> | 2004-03-13 05:42:36 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-03-13 05:42:36 +0000 |
commit | 06f7d17e81de21a95e35b03453242bc62b05a6aa (patch) | |
tree | bc9c53bce2c6a2fdce3caf5bb45bc3f8634b56be /xpm | |
parent | 4b022a36ced4930af6bcdeb7d75a5ed10c4ac9cd (diff) |
First pass of .oe cleanups.
BKrev: 40529f4crFtRY5_1DubNmWhDeHSmPw
Diffstat (limited to 'xpm')
-rw-r--r-- | xpm/xpm-cvs.oe | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/xpm/xpm-cvs.oe b/xpm/xpm-cvs.oe index e69de29bb2..26db99454d 100644 --- a/xpm/xpm-cvs.oe +++ b/xpm/xpm-cvs.oe @@ -0,0 +1,19 @@ +PV = "0.0cvs${DATE}" +SECTION = "libs" +PRIORITY = "optional" +MAINTAINER = "Greg Gilbert <greg@treke.net>" +RDEPENDS = "libc6" +DEPENDS = "virtual/libc xproto-cvs x11-cvs" +PROVIDES = "xpm" + +SRC_URI="cvs://anoncvs:anoncvs@pdx.freedesktop.org/cvs/xlibs;module=Xpm" +S = "${WORKDIR}/Xpm" + +inherit autotools pkgconfig libtool + +do_stage () { + install -m 0644 ${S}/lib/xpm.h ${STAGING_INCDIR}/X11/xpm.h + install -m 0644 lib/.libs/libXpm.a ${STAGING_LIBDIR}/libXpm.a + install -m 0644 lib/libXpm.lai ${STAGING_LIBDIR}/libXpm.la + oe_soinstall lib/.libs/libXpm.so.4.5.0 ${STAGING_LIBDIR}/ +} |