diff options
author | Graeme Gregory <dp@xora.org.uk> | 2006-12-19 10:34:07 +0000 |
---|---|---|
committer | Graeme Gregory <dp@xora.org.uk> | 2006-12-19 10:34:07 +0000 |
commit | ac9e340b0be16a855374c55e90c08c9e78f27b60 (patch) | |
tree | 6b3f9ed68e96418dbb1146955b1b112f092a2a07 /packages/links/links-x11_2.0+2.1pre26.bb | |
parent | 497d1931f83b6a15b4bed0276605e1243cf58725 (diff) |
links_2.0+2.1pre26.bb, links-x11_2.0+2.1pre26.bb : new kOEn compliant
naming scheme. Also broke common stuff into links.inc and added some
python to version doesnt need to be hardcoded into .bb
Diffstat (limited to 'packages/links/links-x11_2.0+2.1pre26.bb')
-rw-r--r-- | packages/links/links-x11_2.0+2.1pre26.bb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/packages/links/links-x11_2.0+2.1pre26.bb b/packages/links/links-x11_2.0+2.1pre26.bb new file mode 100644 index 0000000000..c026ca7e02 --- /dev/null +++ b/packages/links/links-x11_2.0+2.1pre26.bb @@ -0,0 +1,21 @@ +require links.inc + +DEPENDS += "virtual/libx11" +RCONFLICTS = "links" +PR = "r0" +SRC_URI += " file://links2.desktop \ + http://www.xora.org.uk/oe/links2.png" + +EXTRA_OECONF = "--enable-javascript --with-libfl --enable-graphics \ + --with-ssl=${STAGING_LIBDIR}/.. --with-libjpeg \ + --without-libtiff --without-svgalib --without-fb \ + --without-directfb --without-pmshell --without-atheos \ + --with-x --without-gpm --without-sdl" + +do_install_append() { + install -d ${D}/${datadir}/applications + install -m 0644 ${WORKDIR}/links2.desktop ${D}/${datadir}/applications + install -d ${D}/${datadir}/pixmaps + install -m 0644 ${WORKDIR}/links2.png ${D}/${datadir}/pixmaps +} + |